File tree 2 files changed +2
-2
lines changed
plugins/jandex-plugin/src/main/kotlin/com/github/vlsi/jandex
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import javax.inject.Inject
23
23
open class JandexExtension @Inject constructor(
24
24
objects : ObjectFactory
25
25
) {
26
- val toolVersion = objects.property<String >().convention(" 2 .0.3.Final " )
26
+ val toolVersion = objects.property<String >().convention(" 3 .0.5 " )
27
27
val maxErrors = objects.property<Int >().convention(1000 )
28
28
val jandexBuildAction = objects.property<JandexBuildAction >()
29
29
.convention(JandexBuildAction .BUILD_AND_INCLUDE )
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ open class JandexPlugin : Plugin<Project> {
39
39
project.extensions.create(JANDEX_TASK_NAME , JandexExtension ::class .java)
40
40
val jandexClasspath = configurations.create(" jandexClasspath" ) {
41
41
defaultDependencies {
42
- add(project.dependencies.create(" org.jboss :jandex:${jandexExtension.toolVersion.get()} " ))
42
+ add(project.dependencies.create(" io.smallrye :jandex:${jandexExtension.toolVersion.get()} " ))
43
43
}
44
44
}
45
45
You can’t perform that action at this time.
0 commit comments