Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Migrate to the latest version of smallrye #87

Merged
merged 1 commit into from
Jan 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading