Compare commits
3 Commits
597b627861
...
5d98265873
| Author | SHA256 | Date | |
|---|---|---|---|
| 5d98265873 | |||
| ae879264fc | |||
| 22be4c5463 |
@@ -29,22 +29,24 @@ 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 {
|
||||
toolchain { languageVersion.set(JavaLanguageVersion.of(24)) }
|
||||
toolchain { languageVersion.set(JavaLanguageVersion.of(25)) }
|
||||
}
|
||||
|
||||
tasks.withType<JavaCompile> {
|
||||
options.release.set(24)
|
||||
tasks.withType<JavaCompile>().configureEach {
|
||||
options.release.set(25)
|
||||
}
|
||||
|
||||
tasks.test {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
org.gradle.java.installations.auto-detect=true
|
||||
org.gradle.java.installations.fromEnv=JAVA_HOME
|
||||
org.gradle.java.installations.paths=/usr/local/software/java/jfx-24
|
||||
org.gradle.java.installations.paths=/usr/local/software/java/jfx-25
|
||||
org.gradle.java.installations.auto-download=false
|
||||
org.gradle.configuration-cache=true
|
||||
|
||||
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,6 +1,6 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-all.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
|
||||
Reference in New Issue
Block a user