Skip to content

Commit 03046d8

Browse files
committed
Update to jdk 11.
1 parent 0d51776 commit 03046d8

File tree

6 files changed

+26
-19
lines changed

6 files changed

+26
-19
lines changed

.classpath

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry kind="src" path="src/main/java"/>
4-
<classpathentry kind="src" path="src/test/java"/>
5-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
3+
<classpathentry kind="src" output="bin/main" path="src/main/java">
4+
<attributes>
5+
<attribute name="gradle_scope" value="main"/>
6+
<attribute name="gradle_used_by_scope" value="main,test"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry kind="src" output="bin/test" path="src/test/java">
10+
<attributes>
11+
<attribute name="gradle_scope" value="test"/>
12+
<attribute name="gradle_used_by_scope" value="test"/>
13+
<attribute name="test" value="true"/>
14+
</attributes>
15+
</classpathentry>
16+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11/"/>
617
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
7-
<classpathentry kind="output" path="bin"/>
18+
<classpathentry kind="output" path="bin/default"/>
819
</classpath>

.gradle/buildOutputCleanup/built.bin

Whitespace-only changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#Thu Oct 17 10:16:43 EDT 2019
2-
gradle.version=3.5
1+
#Mon Feb 21 17:10:00 CET 2022
2+
gradle.version=6.6-milestone-3

.gradle/buildOutputCleanup/cache.properties.lock

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#Thu Oct 17 10:16:53 EDT 2019
21
connection.project.dir=
2+
eclipse.preferences.version=1

build.gradle

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

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

77
if (project.hasProperty("projVersion")) {
88
project.setVersion(projVersion+'-SNAPSHOT')
@@ -34,11 +34,11 @@ repositories {
3434
url 'http://maven.geo-solutions.it/'
3535
}
3636

37-
mavenCentral() //jgt
37+
mavenCentral()
3838

39-
flatDir {
40-
dirs 'lib'
41-
}
39+
// flatDir {
40+
// dirs 'lib'
41+
// }
4242
}
4343

4444
dependencies {
@@ -53,10 +53,7 @@ dependencies {
5353
testImplementation 'junit:junit:4.12'
5454

5555
// OMS annotation
56-
// https://mvnrepository.com/artifact/org.jgrasstools/jgt-oms3
57-
compile group: 'org.jgrasstools', name: 'jgt-oms3', version: '0.7.8'
58-
59-
// https://mvnrepository.com/artifact/org.jgrasstools/jgt-jgrassgears
60-
compile group: 'org.jgrasstools', name: 'jgt-jgrassgears', version: '0.7.8'
61-
56+
// https://mvnrepository.com/artifact/org.hortonmachine/hm-gears
57+
implementation group: 'org.hortonmachine', name: 'hm-gears', version: '0.10.4'
58+
6259
}

0 commit comments

Comments
 (0)