Skip to content

Commit 97722c0

Browse files
committed
update dependency
1 parent 2f26227 commit 97722c0

File tree

9 files changed

+47
-9
lines changed

9 files changed

+47
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Java Dns Cache Manipulator(DCM)
66
[![Coverage Status](https://coveralls.io/repos/alibaba/java-dns-cache-manipulator/badge.svg?branch=master)](https://coveralls.io/r/alibaba/java-dns-cache-manipulator?branch=master)
77
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.alibaba/dns-cache-manipulator/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.alibaba/dns-cache-manipulator/)
88
[![GitHub release](https://img.shields.io/github/release/alibaba/java-dns-cache-manipulator.svg)](https://github.com/alibaba/java-dns-cache-manipulator/releases)
9-
[![Dependency Status](https://www.versioneye.com/user/projects/553a2f981d2989f7ee0000a7/badge.svg?style=flat)](https://www.versioneye.com/user/projects/553a2f981d2989f7ee0000a7)
9+
[![Dependency Status](https://www.versioneye.com/user/projects/55eb1377a65c8c000e044a1c/badge.svg?style=flat)](https://www.versioneye.com/user/projects/55eb1377a65c8c000e044a1c)
1010
[![GitHub issues](https://img.shields.io/github/issues/alibaba/java-dns-cache-manipulator.svg)](https://github.com/alibaba/java-dns-cache-manipulator/issues)
1111
[![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
1212

library/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Java Dns Cache Manipulator(DCM) Library
66
[![Coverage Status](https://coveralls.io/repos/alibaba/java-dns-cache-manipulator/badge.svg?branch=master)](https://coveralls.io/r/alibaba/java-dns-cache-manipulator?branch=master)
77
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.alibaba/dns-cache-manipulator/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.alibaba/dns-cache-manipulator/)
88
[![GitHub release](https://img.shields.io/github/release/alibaba/java-dns-cache-manipulator.svg)](https://github.com/alibaba/java-dns-cache-manipulator/releases)
9-
[![Dependency Status](https://www.versioneye.com/user/projects/553a2f981d2989f7ee0000a7/badge.svg?style=flat)](https://www.versioneye.com/user/projects/553a2f981d2989f7ee0000a7)
9+
[![Dependency Status](https://www.versioneye.com/user/projects/55eb1371a65c8c000e0449d3/badge.svg?style=flat)](https://www.versioneye.com/user/projects/55eb1371a65c8c000e0449d3)
1010
[![GitHub issues](https://img.shields.io/github/issues/alibaba/java-dns-cache-manipulator.svg)](https://github.com/alibaba/java-dns-cache-manipulator/issues)
1111
[![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
1212

library/pom.xml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,14 +111,22 @@
111111
<plugin>
112112
<groupId>org.sonatype.plugins</groupId>
113113
<artifactId>nexus-staging-maven-plugin</artifactId>
114-
<version>1.6.5</version>
114+
<version>1.6.6</version>
115115
<extensions>true</extensions>
116116
<configuration>
117117
<serverId>ossrh</serverId>
118118
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
119119
<autoReleaseAfterClose>true</autoReleaseAfterClose>
120120
</configuration>
121121
</plugin>
122+
<plugin>
123+
<groupId>com.versioneye</groupId>
124+
<artifactId>versioneye-maven-plugin</artifactId>
125+
<version>3.5.1</version>
126+
<configuration>
127+
<propertiesPath>${basedir}/versioneye.properties</propertiesPath>
128+
</configuration>
129+
</plugin>
122130
</plugins>
123131
</build>
124132
<profiles>
@@ -145,7 +153,7 @@
145153
<plugin>
146154
<groupId>org.eluder.coveralls</groupId>
147155
<artifactId>coveralls-maven-plugin</artifactId>
148-
<version>3.1.0</version>
156+
<version>4.0.0</version>
149157
</plugin>
150158
</plugins>
151159
</build>

library/versioneye.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Properties for http://www.VersionEye.com
2+
#Sun Sep 06 00:08:18 CST 2015
3+
project_id=55eb1371a65c8c000e0449d3

pom.xml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,19 @@
3939
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4040
</properties>
4141

42+
<build>
43+
<plugins>
44+
<plugin>
45+
<groupId>com.versioneye</groupId>
46+
<artifactId>versioneye-maven-plugin</artifactId>
47+
<version>3.5.1</version>
48+
<configuration>
49+
<propertiesPath>${basedir}/versioneye.properties</propertiesPath>
50+
</configuration>
51+
</plugin>
52+
</plugins>
53+
</build>
54+
4255
<profiles>
4356
<profile>
4457
<id>travis</id>
@@ -63,7 +76,7 @@
6376
<plugin>
6477
<groupId>org.eluder.coveralls</groupId>
6578
<artifactId>coveralls-maven-plugin</artifactId>
66-
<version>3.1.0</version>
79+
<version>4.0.0</version>
6780
</plugin>
6881
</plugins>
6982
</build>

tool/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Java Dns Cache Manipulator Tool
55
[![Windows Build Status](https://img.shields.io/appveyor/ci/oldratlee/java-dns-cache-manipulator/master.svg?label=windows%20build)](https://ci.appveyor.com/project/oldratlee/java-dns-cache-manipulator)
66
[![Coverage Status](https://coveralls.io/repos/alibaba/java-dns-cache-manipulator/badge.svg?branch=master)](https://coveralls.io/r/alibaba/java-dns-cache-manipulator?branch=master)
77
[![GitHub release](https://img.shields.io/github/release/alibaba/java-dns-cache-manipulator.svg)](https://github.com/alibaba/java-dns-cache-manipulator/releases)
8-
[![Dependency Status](https://www.versioneye.com/user/projects/553a2f981d2989f7ee0000a7/badge.svg?style=flat)](https://www.versioneye.com/user/projects/553a2f981d2989f7ee0000a7)
8+
[![Dependency Status](https://www.versioneye.com/user/projects/55eb1374a65c8c000e0449fb/badge.svg?style=flat)](https://www.versioneye.com/user/projects/55eb1374a65c8c000e0449fb)
99
[![GitHub issues](https://img.shields.io/github/issues/alibaba/java-dns-cache-manipulator.svg)](https://github.com/alibaba/java-dns-cache-manipulator/issues)
1010
[![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
1111

tool/pom.xml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<dependency>
2727
<groupId>commons-cli</groupId>
2828
<artifactId>commons-cli</artifactId>
29-
<version>1.3</version>
29+
<version>1.3.1</version>
3030
</dependency>
3131
<dependency>
3232
<groupId>commons-io</groupId>
@@ -80,7 +80,7 @@
8080
</plugin>
8181
<plugin>
8282
<artifactId>maven-assembly-plugin</artifactId>
83-
<version>2.5.4</version>
83+
<version>2.5.5</version>
8484
<configuration>
8585
<finalName>dcm-${project.version}</finalName>
8686
<appendAssemblyId>false</appendAssemblyId>
@@ -100,6 +100,14 @@
100100
</execution>
101101
</executions>
102102
</plugin>
103+
<plugin>
104+
<groupId>com.versioneye</groupId>
105+
<artifactId>versioneye-maven-plugin</artifactId>
106+
<version>3.5.1</version>
107+
<configuration>
108+
<propertiesPath>${basedir}/versioneye.properties</propertiesPath>
109+
</configuration>
110+
</plugin>
103111
</plugins>
104112
</build>
105113

@@ -127,7 +135,7 @@
127135
<plugin>
128136
<groupId>org.eluder.coveralls</groupId>
129137
<artifactId>coveralls-maven-plugin</artifactId>
130-
<version>3.1.0</version>
138+
<version>4.0.0</version>
131139
</plugin>
132140
</plugins>
133141
</build>

tool/versioneye.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Properties for http://www.VersionEye.com
2+
#Sun Sep 06 00:08:18 CST 2015
3+
project_id=55eb1374a65c8c000e0449fb

versioneye.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Properties for http://www.VersionEye.com
2+
#Sun Sep 06 00:08:18 CST 2015
3+
project_id=55eb1377a65c8c000e044a1c

0 commit comments

Comments
 (0)