Skip to content

Commit

Permalink
java 9+: jabx dependencies and attach-javadocs cfg
Browse files Browse the repository at this point in the history
        modified pom.xml to build with java 9+
        - jabx dependencies
        - attach-javadocs plugin configuration
  • Loading branch information
cisba committed Nov 13, 2019
1 parent a3c6e97 commit 8d0989f
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@
<artifactId>slf4j-simple</artifactId>
<version>1.7.25</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>2.3.1</version>
<scope>runtime</scope>
</dependency>


</dependencies>
Expand Down Expand Up @@ -153,13 +159,21 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<version>3.1.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<use>false</use>
<source>1.8</source>
<links>
<link>http://docs.oracle.com/javase/7/docs/api/</link>
</links>
<doclint>none</doclint>
</configuration>
</execution>
</executions>
</plugin>
Expand Down

0 comments on commit 8d0989f

Please sign in to comment.