Skip to content

Commit

Permalink
- Update to 3.11.0
Browse files Browse the repository at this point in the history
- Use gradle 7.0
- Fix security vulnerabilities in js dependencies
  • Loading branch information
ajay-gov committed Aug 17, 2021
1 parent 6d321d0 commit dd8de72
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
8 changes: 4 additions & 4 deletions server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ dependencies {
afterEvaluate {
configurations {
apiElements {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_1_9
targetCompatibility = JavaVersion.VERSION_1_9
}
}

Expand Down Expand Up @@ -79,8 +79,8 @@ afterEvaluate {
compileJava {
options.compilerArgs += compilerArgs
options.encoding = 'UTF-8'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_1_9
targetCompatibility = JavaVersion.VERSION_1_9
exclude '*module-info*'
}

Expand Down
2 changes: 1 addition & 1 deletion server/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
application.version=3.10.2
application.version=3.11.0
2 changes: 1 addition & 1 deletion server/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 2 additions & 0 deletions ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
"@swim/ui": "3.10.2",
"@swim/ux": "3.10.2",
"@types/mapbox-gl": "0.51",
"path-parse": ">=1.0.7",
"kind-of": ">=6.0.3",
"rollup": "1.16",
"rollup-plugin-node-resolve": "5",
"rollup-plugin-sourcemaps": "0",
Expand Down

0 comments on commit dd8de72

Please sign in to comment.