@@ -25,14 +25,18 @@ tasks.withType<Javadoc>().configureEach {
25
25
}
26
26
}
27
27
28
+ val tagsList = listOf (
29
+ " dependency" , " dependencies" , " dependency-management" , " capabilities" , " java" , " logging" ,
30
+ " asm" , " bouncycastle" , " cglib" , " commons-io" , " dom4j" , " guava" , " hamcrest" , " javax" , " jakarta" , " junit" ,
31
+ " postgresql" , " stax" , " slf4j" , " log4j2" , " velocity" , " woodstox"
32
+ )
33
+
28
34
pluginPublishConventions {
29
35
id(" org.gradlex.jvm-dependency-conflict-resolution" )
30
36
implementationClass(" org.gradlex.jvm.dependency.conflict.resolution.JvmDependencyConflictResolutionPlugin" )
31
37
displayName(" JVM Conflict Resolution Gradle Plugin" )
32
- description(" Convenient dependency conflict management for Jave projects." )
33
- tags(" dependency" , " dependencies" , " dependency-management" , " capabilities" , " java" , " logging" ,
34
- " asm" , " bouncycastle" , " cglib" , " commons-io" , " dom4j" , " guava" , " hamcrest" , " javax" , " jakarta" , " junit" ,
35
- " postgresql" , " stax" , " slf4j" , " log4j2" , " velocity" , " woodstox" )
38
+ description(" Convenient dependency conflict management for Java projects." )
39
+ tags(* tagsList.toTypedArray())
36
40
gitHub(" https://github.com/gradlex-org/jvm-dependency-conflict-resolution" )
37
41
website(" https://github.com/gradlex-org/jvm-dependency-conflict-resolution" )
38
42
developer {
@@ -59,6 +63,7 @@ gradlePlugin {
59
63
implementationClass = " org.gradlex.jvm.dependency.conflict.detection.JvmDependencyConflictDetectionPlugin"
60
64
displayName = " JVM Conflict Detection Gradle Plugin"
61
65
description = " Adds Capabilities to well-known Components hosted on Maven Central."
66
+ tags = tagsList
62
67
}
63
68
}
64
69
}
0 commit comments