Skip to content

Commit

Permalink
2.x: Gradle: Add helidon test dependency. Add task dependency for jan…
Browse files Browse the repository at this point in the history
…dex (#4230)

* Add helidon test dependency. Add task dependency for jandex
  • Loading branch information
barchetta authored May 18, 2022
1 parent 28a8bc8 commit 0c3530d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions examples/quickstarts/helidon-quickstart-mp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ dependencies {
runtimeOnly 'org.jboss:jandex'
runtimeOnly 'jakarta.activation:jakarta.activation-api'

testImplementation 'io.helidon.microprofile.tests:helidon-microprofile-tests-junit5'
testImplementation 'org.junit.jupiter:junit-jupiter-api'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
}
Expand Down Expand Up @@ -98,5 +99,7 @@ task moveBeansXML {
todir: "${buildDir}/classes/java/main/META-INF"
}
}
compileTestJava.dependsOn jandex
jar.dependsOn jandex
test.dependsOn moveBeansXML
run.dependsOn moveBeansXML

0 comments on commit 0c3530d

Please sign in to comment.