Skip to content

Commit

Permalink
Added jaxb dependencies to support java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
Bohlski committed Aug 6, 2021
1 parent fedb8ae commit 411342b
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions bitrepository-message-xml-java/pom.xml
Expand Up @@ -17,6 +17,22 @@
<artifactId>jaxb2-basics-runtime</artifactId>
<version>0.11.1</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>3.0.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.bitrepository</groupId>
<artifactId>bitrepository-message-xml-xsd</artifactId>
Expand Down Expand Up @@ -64,7 +80,7 @@
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<version>0.13.1</version>
<version>0.14.0</version>
<executions>
<execution>
<id>generate-message-classes</id>
Expand All @@ -91,7 +107,7 @@
<plugin>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics-annotate</artifactId>
<version>1.0.2</version>
<version>1.1.0</version>
</plugin>
</plugins>
</configuration>
Expand Down Expand Up @@ -121,7 +137,7 @@
<plugin>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics-annotate</artifactId>
<version>1.0.2</version>
<version>1.1.0</version>
</plugin>
</plugins>
</configuration>
Expand All @@ -132,6 +148,7 @@
<!-- Copies the jaxb bindings definition to the message xsd dir,
in preparation for the xsd -> java class file generation -->
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>copy-resources</id>
Expand All @@ -154,4 +171,8 @@
</plugin>
</plugins>
</build>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
</project>

0 comments on commit 411342b

Please sign in to comment.