Version 1.1.5-beta (latest)
Created 07 September 2018.
testing plugin,do not use it please.
Using the plugins DSL:
plugins {
id "com.wangxue.plugin.IntelligenceCollectionPlugin" version "1.1.5-beta"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.wangxue-plugin:custom_plugin:1.1.5-beta"
}
}
apply plugin: "com.wangxue.plugin.IntelligenceCollectionPlugin"
Using the plugins DSL:
plugins {
id("com.wangxue.plugin.IntelligenceCollectionPlugin") version "1.1.5-beta"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.wangxue-plugin:custom_plugin:1.1.5-beta")
}
}
apply(plugin = "com.wangxue.plugin.IntelligenceCollectionPlugin")