Skip to content

Commit

Permalink
Java: Fix sourceCompatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
agdavydov81 committed Jun 26, 2023
1 parent 0040c04 commit 799c2a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions java/dfp-math/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@ if (isReleaseVersion) {

group = 'com.epam.deltix'

sourceCompatibility = 1.7
compileTestJava {
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
}
sourceCompatibility = 8

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion java/dfpNativeTests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ apply plugin: 'me.champeau.gradle.jmh'

group = 'com.epam.deltix'

sourceCompatibility = 1.8
sourceCompatibility = 8

repositories {
mavenCentral()
Expand Down

0 comments on commit 799c2a1

Please sign in to comment.