Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
remove unsupport Java 6 in JDK 13
  • Loading branch information
aaschmid committed Jan 2, 2020
1 parent e02e00a commit 8b54e39
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ build-job: &build-job
- gradle-repo-v1-{{ .Branch }}-
- gradle-repo-v1-

- run: java --version

- run: ./gradlew --build-cache --scan build -Pjunit4Version=4.10 -PjunitJupiterVersion=5.5.0-RC2 -PskipSpotBugs
- run: ./gradlew --build-cache --scan build -Pjunit4Version=4.11 -PjunitJupiterVersion=5.5.0 -PskipSpotBugs
- run: ./gradlew --build-cache --scan build
Expand Down
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ project(":core") {
}

configure<JavaPluginExtension> {
sourceCompatibility = JavaVersion.VERSION_1_6
targetCompatibility = JavaVersion.VERSION_1_6
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
}

dependencies {
Expand Down Expand Up @@ -129,8 +129,8 @@ project(":junit4") {
}

configure<JavaPluginExtension> {
sourceCompatibility = JavaVersion.VERSION_1_6
targetCompatibility = JavaVersion.VERSION_1_6
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
}

configure<SourceSetContainer> {
Expand Down

0 comments on commit 8b54e39

Please sign in to comment.