Skip to content

Commit

Permalink
Release v2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
srikanth-lingala committed Feb 15, 2021
1 parent 7eebad3 commit bc352fb
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Zip4j supports JDK 7 as well. In cases where the feature/class from JDK 8 is mis
<dependency>
<groupId>net.lingala.zip4j</groupId>
<artifactId>zip4j</artifactId>
<version>2.6.4</version>
<version>2.7.0</version>
</dependency>
```

Expand Down
14 changes: 13 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>net.lingala.zip4j</groupId>
<artifactId>zip4j</artifactId>
<version>2.6.5.1-SNAPSHOT</version>
<version>2.7.0</version>

<name>Zip4j</name>
<description>Zip4j - A Java library for zip files and streams</description>
Expand Down Expand Up @@ -83,6 +83,18 @@
</dependency>
</dependencies>

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

<build>
<sourceDirectory>src/main/java</sourceDirectory>
<plugins>
Expand Down

0 comments on commit bc352fb

Please sign in to comment.