@@ -61,34 +61,38 @@ gradlePlugin {
6161 displayName = " Gradle Docker Remote API Plugin"
6262 description = " Plugin that provides tasks for interacting with Docker via its remote API."
6363 implementationClass = " com.bmuschko.gradle.docker.DockerRemoteApiPlugin"
64+ tags.set(listOf (" docker" , " container" , " image" , " lightweight" , " vm" , " linux" ))
6465 }
6566 create(" docker-java-application" ) {
6667 id = " com.bmuschko.docker-java-application"
6768 displayName = " Gradle Docker Java Application Plugin"
6869 description = " Plugin that provides conventions for building and publishing Docker images for Java applications."
6970 implementationClass = " com.bmuschko.gradle.docker.DockerJavaApplicationPlugin"
71+ tags.set(listOf (" docker" , " container" , " image" , " lightweight" , " vm" , " linux" ))
7072 }
7173 create(" docker-spring-boot-application" ) {
7274 id = " com.bmuschko.docker-spring-boot-application"
7375 displayName = " Gradle Docker Spring Boot Application Plugin"
7476 description = " Plugin that provides conventions for building and publishing Docker images for Spring Boot applications."
7577 implementationClass = " com.bmuschko.gradle.docker.DockerSpringBootApplicationPlugin"
78+ tags.set(listOf (" docker" , " container" , " image" , " lightweight" , " vm" , " linux" ))
7679 }
7780 }
7881}
7982
80- pluginBundle {
81- website = " https://github.com/bmuschko/gradle-docker-plugin"
82- vcsUrl = " https://github.com/bmuschko/gradle-docker-plugin"
83- tags = listOf (" docker" , " container" , " image" , " lightweight" , " vm" , " linux" )
83+ gradlePlugin {
84+ website.set(" https://github.com/bmuschko/gradle-docker-plugin" )
85+ vcsUrl.set(" https://github.com/bmuschko/gradle-docker-plugin" )
8486}
8587
86- buildScan {
87- termsOfServiceUrl = " https://gradle.com/terms-of-service"
88- termsOfServiceAgree = " yes"
88+ develocity {
89+ buildScan {
90+ termsOfUseUrl.set(" https://gradle.com/help/legal-terms-of-use" )
91+ termsOfUseAgree.set(" yes" )
8992
90- if (! System .getenv(" CI" ).isNullOrEmpty()) {
91- publishAlways()
92- tag(" CI" )
93+ if (! System .getenv(" CI" ).isNullOrEmpty()) {
94+ publishing.onlyIf { true }
95+ tag(" CI" )
96+ }
9397 }
9498}
0 commit comments