Skip to content

Commit

Permalink
Upgrading to OpenJDK 17 (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
z-sztrom authored Jun 6, 2023
1 parent cdd7088 commit 1932912
Showing 1 changed file with 23 additions and 6 deletions.
29 changes: 23 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.eiffel-community</groupId>
<artifactId>eiffel-remrem-parent</artifactId>
<version>2.0.9</version>
<version>2.0.11</version>
</parent>
<artifactId>eiffel-remrem-semantics</artifactId>
<version>2.2.4</version>
<version>2.2.5</version>
<packaging>jar</packaging>
<properties>
<eclipse.jgit.version>5.0.1.201806211838-r</eclipse.jgit.version>
Expand Down Expand Up @@ -84,7 +84,7 @@
<version>4.5.13</version>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.4.0</version>
</dependency>
Expand All @@ -98,6 +98,23 @@
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
</dependency>

</dependencies>
<profiles>
<!-- By default these profiles were disabled if user wants to override
Expand Down Expand Up @@ -193,8 +210,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 1932912

Please sign in to comment.