Skip to content

Commit f70385b

Browse files
committed
Update to jdk 11
1 parent f6dd19e commit f70385b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ apply plugin: 'java'
22
apply plugin: 'eclipse'
33

44
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
5-
sourceCompatibility = '1.8'
5+
sourceCompatibility = 11
6+
targetCompatibility = 11
67

78
// to get project version from command line, just type
89
// $ gradle -PprojVersion=<version_number> build
@@ -28,7 +29,7 @@ repositories {
2829
}
2930

3031
maven {
31-
url 'http://maven.geo-solutions.it/'
32+
url 'https://maven.geo-solutions.it/'
3233
}
3334

3435

@@ -41,7 +42,7 @@ repositories {
4142

4243
dependencies {
4344

44-
compile name: 'oms-all'
45+
implementation name: 'oms-all'
4546

4647
// This dependency is exported to consumers, that is to say found on their compile classpath.
4748
//api 'org.apache.commons:commons-math3:3.6.1'

0 commit comments

Comments
 (0)