Skip to content

Commit a1f9699

Browse files
author
ehennum
committed
clean up publishPlugins task for Gradle plugin portal #982
1 parent bd71b8a commit a1f9699

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

marklogic-development-tools/build.gradle

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -31,31 +31,27 @@ dependencies {
3131
testCompileOnly gradleTestKit()
3232
}
3333

34-
task pluginJar(type: Jar) {
35-
version = '4.1'
34+
task mlDevelopmentToolsPlugin(type: Jar) {
35+
baseName = 'ml-development-tools'
3636
}
3737

3838
publishing {
3939
publications {
4040
main(MavenPublication) {
41-
artifact pluginJar
41+
artifact mlDevelopmentToolsPlugin
4242
}
4343
}
4444
}
4545

4646
pluginBundle {
47-
website = 'http://www.gradle.org/'
47+
website = 'https://github.com/marklogic/java-client-api'
4848
vcsUrl = 'git@github.com:marklogic/java-client-api.git'
49-
description = 'ml-development-tools plugin for developing data services on MarkLogic'
50-
tags = ['marklogic', 'development tools', 'data services']
51-
5249
plugins {
53-
marklogicClientToolsPlugin {
50+
mlDevelopmentToolsPlugin {
5451
id = 'com.marklogic.ml-development-tools'
5552
displayName = 'ml-development-tools MarkLogic Data Service Tools'
56-
description = 'Gradle plugin for developing data services on MarkLogic'
53+
description = 'ml-development-tools plugin for developing data services on MarkLogic'
5754
tags = ['marklogic', 'development tools', 'data services']
58-
version = project.version
5955
}
6056
}
6157
}

0 commit comments

Comments
 (0)