Skip to content

Commit

Permalink
updated project
Browse files Browse the repository at this point in the history
  • Loading branch information
amoldavsky committed Jul 17, 2020
1 parent 296d024 commit a1518f8
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions incubating/wrappers/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<groupId>io.seldon.wrapper</groupId>
<artifactId>seldon-core-wrapper</artifactId>
<packaging>jar</packaging>
<version>0.1.5</version>
<version>0.2.0</version>
<name>Seldon Core Java Wrapper</name>
<url>http://maven.apache.org</url>
<description>Wrapper for seldon-core Java prediction models.
Expand Down Expand Up @@ -48,7 +48,9 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<version>2.2.4.RELEASE</version>
</parent>
<properties>
<java.version>1.8</java.version>
<java.version>13</java.version>
<maven.compiler.source>13</maven.compiler.source>
<maven.compiler.target>13</maven.compiler.target>
<project.build.sourceEncoding>
UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>
Expand Down Expand Up @@ -144,7 +146,15 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<version>3.2.0</version>
<configuration>
<!--
FIXME: TEMP FIX for a JavaDoc error linking to external non-existing packages
https://github.com/joel-costigliola/assertj-core/issues/1403
https://issues.apache.org/jira/browse/MJAVADOC-562
-->
<detectJavaApiLink>false</detectJavaApiLink>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down

0 comments on commit a1518f8

Please sign in to comment.