From 2803b7cd8430457ad81a003d55a291f9d73790d8 Mon Sep 17 00:00:00 2001 From: Doug Morato <dm@corp.io> Date: Mon, 26 Oct 2015 00:33:04 -0400 Subject: [PATCH] Adding VersionEye VersionEye is a free service for open-source repositories that track and report the versions of all dependencies in a project Signed-off-by: Doug Morato <dm@corp.io> --- .travis.yml | 1 + README.MD | 2 +- pom.xml | 10 ++++++++++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a842c64f7..bad904c40 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,6 +30,7 @@ deploy: branch: master jdk: oraclejdk8 after_success: + - mvn versioneye:update - mvn clean cobertura:cobertura coveralls:report notifications: slack: diff --git a/README.MD b/README.MD index d15beff4f..aa04aca54 100644 --- a/README.MD +++ b/README.MD @@ -4,7 +4,7 @@ [](https://scan.coverity.com/projects/webgoat-webgoat) [](https://coveralls.io/github/WebGoat/WebGoat?branch=master) [](https://www.codacy.com/app/dm/WebGoat) - +[](https://www.versioneye.com/user/projects/562da95ae346d7000e0369aa) # Important Information diff --git a/pom.xml b/pom.xml index 435ff7507..50b033c9c 100644 --- a/pom.xml +++ b/pom.xml @@ -159,6 +159,7 @@ <tomcat7-maven-plugin.version>2.3-SNAPSHOT</tomcat7-maven-plugin.version> <wsdl4j.version>1.5.1</wsdl4j.version> <tomcat-catalina.version>7.0.63</tomcat-catalina.version> + <versioneye-maven-plugin.version>3.5.1</versioneye-maven-plugin.version> </properties> <modules> @@ -282,6 +283,15 @@ <aggregate>true</aggregate> </configuration> </plugin> + <plugin> + <groupId>com.versioneye</groupId> + <artifactId>versioneye-maven-plugin</artifactId> + <version>${versioneye-maven-plugin.version}</version> + <configuration> + <apiKey>a1e4a9da4ed34ee44cab</apiKey> + <projectId>562da95be346d7000e0369ac</projectId> + </configuration> + </plugin> </plugins> </build>