Skip to content

Commit 139e636

Browse files
committed
bump java version 1.8 to 1.11
1 parent 114adf7 commit 139e636

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ version '0.1.1'
88
apply plugin: 'java'
99
apply plugin: 'application'
1010

11-
sourceCompatibility = 1.8
11+
sourceCompatibility = 1.11
12+
targetCompatibility = 1.11
1213

1314
mainClassName = 'io.squark.swaggercombine.SwaggerCombine'
1415

@@ -55,7 +56,7 @@ repositories {
5556
}
5657

5758
dependencies {
58-
compile group: 'io.swagger', name: 'swagger-parser', version: '1.0.25'
59-
compile group: 'io.swagger', name: 'swagger-core', version: '1.5.12'
60-
testCompile group: 'junit', name: 'junit', version: '4.11'
59+
implementation group: 'io.swagger', name: 'swagger-parser', version: '1.0.25'
60+
implementation group: 'io.swagger', name: 'swagger-core', version: '1.5.12'
61+
testImplementation group: 'junit', name: 'junit', version: '4.11'
6162
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.1-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip

0 commit comments

Comments
 (0)