Skip to content

Commit

Permalink
Migrate to the latest version of smallrye
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexsandro Souza authored and vlsi committed Jan 7, 2024
1 parent 009910d commit c6b1d52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import javax.inject.Inject
open class JandexExtension @Inject constructor(
objects: ObjectFactory
) {
val toolVersion = objects.property<String>().convention("2.0.3.Final")
val toolVersion = objects.property<String>().convention("3.0.5")
val maxErrors = objects.property<Int>().convention(1000)
val jandexBuildAction = objects.property<JandexBuildAction>()
.convention(JandexBuildAction.BUILD_AND_INCLUDE)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ open class JandexPlugin : Plugin<Project> {
project.extensions.create(JANDEX_TASK_NAME, JandexExtension::class.java)
val jandexClasspath = configurations.create("jandexClasspath") {
defaultDependencies {
add(project.dependencies.create("org.jboss:jandex:${jandexExtension.toolVersion.get()}"))
add(project.dependencies.create("io.smallrye:jandex:${jandexExtension.toolVersion.get()}"))
}
}

Expand Down

0 comments on commit c6b1d52

Please sign in to comment.