Skip to content

Commit 26d705b

Browse files
Move to Java 17 due to geotools requiring it.
1 parent 5622b34 commit 26d705b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ This project follows the [Open Knowledge International coding standards](https:/
5555

5656
Get started:
5757
```sh
58-
# install Java 1.8 or higher (use Jabba if you need to test on different versions) and maven2
58+
# install Java 17 or higher (use Jabba if you need to test on different versions) and maven2
5959
$ cd tableschema-java
60-
$ jabba install 1.8
61-
$ jabba use 1.8
60+
$ jabba install 17
61+
$ jabba use 17
6262
$ mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
6363
$ mvn test -B
6464
```

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>io.frictionlessdata</groupId>
55
<artifactId>tableschema-java-isnow</artifactId>
6-
<version>0.6.18-SNAPSHOT</version>
6+
<version>0.6.19-SNAPSHOT</version>
77
<packaging>jar</packaging>
88
<issueManagement>
99
<url>https://github.com/frictionlessdata/tableschema-java/issues</url>
@@ -17,10 +17,10 @@
1717
<properties>
1818
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1919
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
20-
<java.version>8</java.version>
20+
<java.version>17</java.version>
2121
<maven.compiler.source>${java.version}</maven.compiler.source>
2222
<maven.compiler.target>${java.version}</maven.compiler.target>
23-
<maven.compiler.compiler>17</maven.compiler.compiler>
23+
<maven.compiler.compiler>${java.version}</maven.compiler.compiler>
2424
<google-guava.version>33.4.0-jre</google-guava.version>
2525
<apache-commons-lang3.version>3.17.0</apache-commons-lang3.version>
2626
<apache-commons-csv.version>1.13.0</apache-commons-csv.version>

0 commit comments

Comments
 (0)