File tree Expand file tree Collapse file tree 3 files changed +20
-15
lines changed
Expand file tree Collapse file tree 3 files changed +20
-15
lines changed Original file line number Diff line number Diff line change @@ -99,13 +99,12 @@ test-jdk-8:
9999 variables :
100100 TEST_JDK : 8
101101
102- # JDK 17 is currently the default of the build image. JDK 21 LTS will arrive around September 2023.
103- # JDK 17 is the latest LTS release.
104- # test-jdk-17:
105- # extends: .test-asan-template
106- # needs: ["test-jdk-8"]
107- # variables:
108- # TEST_JDK: 17
102+ # JDK 11 is the next oldest LTS release.
103+ test-jdk-11 :
104+ extends : .test-asan-template
105+ needs : ["test-jdk-8"]
106+ variables :
107+ TEST_JDK : 11
109108
110109test-jdk-x86 :
111110 extends : .test-template
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ plugins {
2+ // Supports resolving toolchains for JVM projects
3+ // https://docs.gradle.org/8.0/userguide/toolchains.html#sub:download_repositories
4+ id(" org.gradle.toolchains.foojay-resolver-convention" ) version(" 0.4.0" )
5+ }
6+
7+ include(" :objectbox-java-api" )
8+ include(" :objectbox-java" )
9+ include(" :objectbox-kotlin" )
10+ include(" :objectbox-rxjava" )
11+ include(" :objectbox-rxjava3" )
12+
13+ include(" :tests:objectbox-java-test" )
14+ include(" :tests:test-proguard" )
You can’t perform that action at this time.
0 commit comments