Skip to content

Commit

Permalink
Revert to Java 8
Browse files Browse the repository at this point in the history
  • Loading branch information
phensley committed Nov 21, 2024
1 parent 1b154ae commit 91ff04c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .sdkmanrc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
java=11.0.20.1-zulu
java=8.0.432-zulu

6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ apply plugin: 'jacoco'

group = 'com.squarespace.cldr-engine'

sourceCompatibility = 11
targetCompatibility = 11
sourceCompatibility = 1.8
targetCompatibility = 1.8

project.ext {
gsonVersion = '2.10.1'
lombokVersion = '1.18.28'
testngVersion = '7.8.0'
testngVersion = '7.1.0'

buildDate = new java.util.Date()
buildCommit = ('git rev-parse HEAD').execute().text.trim()
Expand Down
6 changes: 3 additions & 3 deletions codegen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
},
"devDependencies": {
"@phenomnomnominal/tsquery": "^6.1.3",
"@phensley/cldr": "1.8.2",
"@phensley/cldr-compiler": "1.8.2",
"@phensley/unit-converter": "1.8.2",
"@phensley/cldr": "1.8.3",
"@phensley/cldr-compiler": "1.8.3",
"@phensley/unit-converter": "1.8.3",
"@types/jest": "^29.5.4",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
public class MiscData {

public static final String VERSION =
"1.8.2";
"1.8.3";


}

0 comments on commit 91ff04c

Please sign in to comment.