File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -57,12 +57,13 @@ dependencies {
57
57
rewrite(" org.openrewrite.recipe:rewrite-recommendations:latest.release" )
58
58
59
59
// ↓ Classpath resource for MigrateTestNg* recipes
60
- implementation(" org.testng:testng:latest.release" )
60
+ compileOnly(" org.testng:testng:7.5.1" ) // 7.5.x is the last Java 8 compatible version: https://github.com/testng-team/testng/issues/2775
61
+
61
62
// ↓ also make jupiter available for refaster compilation
62
- implementation (" org.junit.jupiter:junit-jupiter:latest.release" )
63
+ compileOnly (" org.junit.jupiter:junit-jupiter-api :latest.release" )
63
64
64
65
// ↓ to allow using testing recipes in our recipe list
65
- testRuntimeOnly (" org.openrewrite.recipe:rewrite-testing-frameworks:latest.release" ) {
66
+ compileOnly (" org.openrewrite.recipe:rewrite-testing-frameworks:latest.release" ) {
66
67
exclude(" org.testcontainers" , " testcontainers" )
67
68
}
68
69
}
You can’t perform that action at this time.
0 commit comments