Skip to content

Commit

Permalink
Merge pull request #7 from aleksandr-kotlyar/pom-cleanup
Browse files Browse the repository at this point in the history
Resolves problem with maven execution java13
  • Loading branch information
aleksandr-kotlyar authored Feb 23, 2020
2 parents 583931a + c97cfed commit 95f0903
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>java-sitemap-checker</groupId>
<artifactId>java-sitemap-checker</artifactId>
<version>1.2-SNAPSHOT</version>
<version>1.3-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand Down Expand Up @@ -70,7 +70,23 @@
<scope>test</scope>
</dependency>


<!-- replace dependencies that have been removed from JRE's starting with Java v11 -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.2.8</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>2.2.8-b01</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.2.8-b01</version>
</dependency>
<!-- end replace dependencies that have been removed from JRE's starting with Java v11 -->
</dependencies>

</project>

0 comments on commit 95f0903

Please sign in to comment.