Skip to content

Commit

Permalink
v1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
szhnet committed Feb 27, 2018
1 parent a8a021b commit 1fd973f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ To add a dependency using Maven:
<dependency>
<groupId>io.jpower.kcp</groupId>
<artifactId>kcp-netty</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion kcp-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.jpower.kcp</groupId>
<artifactId>kcp-parent</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion kcp-netty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.jpower.kcp</groupId>
<artifactId>kcp-parent</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
14 changes: 12 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.jpower.kcp</groupId>
<artifactId>kcp-parent</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
<packaging>pom</packaging>

<name>kcp-netty [Parent]</name>
Expand Down Expand Up @@ -135,6 +135,16 @@
</build>

<profiles>
<profile>
<id>doclint-java8-disable</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<properties>
<javadoc.opts>-Xdoclint:none</javadoc.opts>
</properties>
</profile>

<profile>
<id>release</id>
<build>
Expand Down Expand Up @@ -165,7 +175,7 @@
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
<additionalparam>${javadoc.opts}</additionalparam>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit 1fd973f

Please sign in to comment.