diff --git a/build.gradle.kts b/build.gradle.kts index 87ee9bd..b77ee59 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -29,14 +29,16 @@ repositories { dependencies { // The test classes are compiled with these: - implementation("com.r35157.nenjim:testtool-api:0.0.0") - implementation("com.r35157.nenjim:testtool-impl-ref:0.0.0") - implementation("org.jetbrains:annotations:26.0.1") + implementation("com.r35157.nenjim:testtool-api:0.1-dev") + implementation("com.r35157.nenjim:testtool-impl_ref:0.1-dev") // The JUnit platform will not be included in the JAR file but are needed for running the tests: - testImplementation(platform("org.junit:junit-bom:5.11.4")) + testImplementation(platform("org.junit:junit-bom:6.0.2")) testImplementation("org.junit.jupiter:junit-jupiter") testRuntimeOnly("org.junit.platform:junit-platform-launcher") + + compileOnly("org.jetbrains:annotations:26.0.2-1") + } java {