Fixing all build warnings during Maven build

This commit is contained in:
Doug Morato 2015-08-19 21:00:40 -04:00 committed by Nanne Baars
parent fb63a325f7
commit 4d26d84eef
2 changed files with 3 additions and 19 deletions

View File

@ -10,6 +10,7 @@
<properties> <properties>
<!-- If run from Bamboo this will be replaced with the bamboo build number --> <!-- If run from Bamboo this will be replaced with the bamboo build number -->
<build.number>local</build.number> <build.number>local</build.number>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties> </properties>
<modules> <modules>
<module>webgoat-container</module> <module>webgoat-container</module>

View File

@ -41,6 +41,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<executions> <executions>
<execution> <execution>
<id>create-jar</id> <id>create-jar</id>
@ -108,7 +109,7 @@
<dependency> <dependency>
<groupId>org.owasp.webgoat</groupId> <groupId>org.owasp.webgoat</groupId>
<artifactId>webgoat-classloader</artifactId> <artifactId>webgoat-classloader</artifactId>
<version>6.1.0</version> <version>${project.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.owasp.webgoat</groupId> <groupId>org.owasp.webgoat</groupId>
@ -179,11 +180,6 @@
<artifactId>commons-lang3</artifactId> <artifactId>commons-lang3</artifactId>
<version>3.3.2</version> <version>3.3.2</version>
</dependency> </dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.2.1</version>
</dependency>
<dependency> <dependency>
<groupId>commons-io</groupId> <groupId>commons-io</groupId>
<artifactId>commons-io</artifactId> <artifactId>commons-io</artifactId>
@ -235,12 +231,6 @@
<artifactId>hsqldb</artifactId> <artifactId>hsqldb</artifactId>
<version>1.8.0.10</version> <version>1.8.0.10</version>
</dependency> </dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency> <dependency>
<groupId>wsdl4j</groupId> <groupId>wsdl4j</groupId>
<artifactId>wsdl4j</artifactId> <artifactId>wsdl4j</artifactId>
@ -335,13 +325,6 @@
<version>1.2.2</version> <version>1.2.2</version>
</dependency> </dependency>
<!-- Apache Commons Upload -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.3.2</version>
</dependency>
<dependency> <dependency>
<groupId>com.google.guava</groupId> <groupId>com.google.guava</groupId>
<artifactId>guava</artifactId> <artifactId>guava</artifactId>