Skip to content

Commit 1932912

Browse files
authored
Upgrading to OpenJDK 17 (#158)
1 parent cdd7088 commit 1932912

File tree

1 file changed

+23
-6
lines changed

1 file changed

+23
-6
lines changed

pom.xml

+23-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<parent>
55
<groupId>com.github.eiffel-community</groupId>
66
<artifactId>eiffel-remrem-parent</artifactId>
7-
<version>2.0.9</version>
7+
<version>2.0.11</version>
88
</parent>
99
<artifactId>eiffel-remrem-semantics</artifactId>
10-
<version>2.2.4</version>
10+
<version>2.2.5</version>
1111
<packaging>jar</packaging>
1212
<properties>
1313
<eclipse.jgit.version>5.0.1.201806211838-r</eclipse.jgit.version>
@@ -84,7 +84,7 @@
8484
<version>4.5.13</version>
8585
</dependency>
8686
<dependency>
87-
<groupId>com.jayway.jsonpath</groupId>
87+
<groupId>com.jayway.jsonpath</groupId>
8888
<artifactId>json-path</artifactId>
8989
<version>2.4.0</version>
9090
</dependency>
@@ -98,6 +98,23 @@
9898
<artifactId>junit</artifactId>
9999
<scope>test</scope>
100100
</dependency>
101+
102+
<dependency>
103+
<groupId>javax.xml.bind</groupId>
104+
<artifactId>jaxb-api</artifactId>
105+
<version>2.3.1</version>
106+
</dependency>
107+
<dependency>
108+
<groupId>org.glassfish.jaxb</groupId>
109+
<artifactId>jaxb-runtime</artifactId>
110+
<version>2.3.1</version>
111+
</dependency>
112+
<dependency>
113+
<groupId>javax.annotation</groupId>
114+
<artifactId>javax.annotation-api</artifactId>
115+
<version>1.3.2</version>
116+
</dependency>
117+
101118
</dependencies>
102119
<profiles>
103120
<!-- By default these profiles were disabled if user wants to override
@@ -193,8 +210,8 @@
193210
<artifactId>maven-compiler-plugin</artifactId>
194211
<version>3.6.1</version>
195212
<configuration>
196-
<source>1.8</source>
197-
<target>1.8</target>
213+
<source>17</source>
214+
<target>17</target>
198215
</configuration>
199216
</plugin>
200217
<plugin>

0 commit comments

Comments
 (0)