Skip to content

Commit c6b1d52

Browse files
Alexsandro Souzavlsi
Alexsandro Souza
authored andcommitted
Migrate to the latest version of smallrye
1 parent 009910d commit c6b1d52

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugins/jandex-plugin/src/main/kotlin/com/github/vlsi/jandex/JandexExtension.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import javax.inject.Inject
2323
open class JandexExtension @Inject constructor(
2424
objects: ObjectFactory
2525
) {
26-
val toolVersion = objects.property<String>().convention("2.0.3.Final")
26+
val toolVersion = objects.property<String>().convention("3.0.5")
2727
val maxErrors = objects.property<Int>().convention(1000)
2828
val jandexBuildAction = objects.property<JandexBuildAction>()
2929
.convention(JandexBuildAction.BUILD_AND_INCLUDE)

plugins/jandex-plugin/src/main/kotlin/com/github/vlsi/jandex/JandexPlugin.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ open class JandexPlugin : Plugin<Project> {
3939
project.extensions.create(JANDEX_TASK_NAME, JandexExtension::class.java)
4040
val jandexClasspath = configurations.create("jandexClasspath") {
4141
defaultDependencies {
42-
add(project.dependencies.create("org.jboss:jandex:${jandexExtension.toolVersion.get()}"))
42+
add(project.dependencies.create("io.smallrye:jandex:${jandexExtension.toolVersion.get()}"))
4343
}
4444
}
4545

0 commit comments

Comments
 (0)