Skip to content

Commit

Permalink
Added Java 9+ support
Browse files Browse the repository at this point in the history
  • Loading branch information
urbim committed Jan 30, 2019
1 parent 1fcaa31 commit 2bb852a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,20 @@
</plugins>
</build>

<profiles>
<profile>
<id>java9-modules</id>
<activation>
<jdk>[9,)</jdk>
</activation>
<dependencies>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${jaxb-api.version}</version>
</dependency>
</dependencies>
</profile>
</profiles>

</project>
2 changes: 2 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<jaxb-api.version>2.3.0</jaxb-api.version>

<kumuluzee.version>3.1.0</kumuluzee.version>
<kumuluzee-config-mp.version>1.3.0</kumuluzee-config-mp.version>

Expand Down

0 comments on commit 2bb852a

Please sign in to comment.