17 lines
521 B
Groovy
17 lines
521 B
Groovy
plugins {
|
|
id 'com.gradle.plugin-publish' version '1.3.0' //这个plugin本身已经包含了Java-gradle-plugin和maven-publish
|
|
}
|
|
|
|
group = 'net.risesoft.y9'
|
|
version = '1.0'
|
|
|
|
gradlePlugin {
|
|
website = 'https://svn.youshengyun.com:3000/risesoft/y9-build-logic'
|
|
vcsUrl = 'https://svn.youshengyun.com:3000/risesoft/y9-build-logic'
|
|
|
|
}
|
|
|
|
// https://docs.gradle.org/current/userguide/publishing_gradle_module_metadata.html#sub:disabling-gmm-publication
|
|
tasks.withType(GenerateModuleMetadata) {
|
|
enabled = false
|
|
} |