Skip to content

Commit 7d01f13

Browse files
committed
Graal 22.1.0 doesn't support java 8 anymore
Signed-off-by: Paulo Lopes <[email protected]>
1 parent f1ef78d commit 7d01f13

File tree

3 files changed

+6
-30
lines changed

3 files changed

+6
-30
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## [0.17.2] -
8+
## [0.18.0] -
99
* Added new module `@vertx/uri-template`
1010
* Force commonjs loader to be synchronized
1111
* Bumped graal to 22.1.0
1212
* Bumped vertx to 4.2.7
13+
* Given that graaljs no longer supports java8, we bump the minor
1314

1415
## [0.17.1] - 2022-03-11
1516
* Bump graaljs to 22.0.0.2

codegen/pom.xml

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,6 @@
1313
<artifactId>es4x-codegen</artifactId>
1414
<version>0.17.2-SNAPSHOT</version>
1515

16-
<properties>
17-
<tools.jar>${java.home}/../lib/tools.jar</tools.jar>
18-
</properties>
19-
20-
<profiles>
21-
<profile>
22-
<id>tools.jar</id>
23-
<activation>
24-
<file>
25-
<exists>${tools.jar}</exists>
26-
</file>
27-
</activation>
28-
<dependencies>
29-
<dependency>
30-
<groupId>com.sun</groupId>
31-
<artifactId>tools</artifactId>
32-
<version>1.8</version>
33-
<scope>system</scope>
34-
<systemPath>${tools.jar}</systemPath>
35-
<optional>true</optional>
36-
</dependency>
37-
</dependencies>
38-
</profile>
39-
</profiles>
40-
4116
<dependencies>
4217
<dependency>
4318
<groupId>io.vertx</groupId>

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
<packaging>pom</packaging>
99

1010
<properties>
11-
<maven.compiler.target>1.8</maven.compiler.target>
12-
<maven.compiler.source>1.8</maven.compiler.source>
13-
<maven.compiler.testTarget>1.8</maven.compiler.testTarget>
14-
<maven.compiler.testSource>1.8</maven.compiler.testSource>
11+
<maven.compiler.target>11</maven.compiler.target>
12+
<maven.compiler.source>11</maven.compiler.source>
13+
<maven.compiler.testTarget>11</maven.compiler.testTarget>
14+
<maven.compiler.testSource>11</maven.compiler.testSource>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1616
<!-- Dependency versions -->
1717
<stack.version>4.2.7</stack.version>

0 commit comments

Comments
 (0)