Skip to content

Commit

Permalink
Updated plugin and various dependencies to run on Java 8 and resolve …
Browse files Browse the repository at this point in the history
…owasp vulnerability findings
  • Loading branch information
tfr42 committed Feb 26, 2019
1 parent 3c9e7d7 commit 657c929
Showing 1 changed file with 14 additions and 18 deletions.
32 changes: 14 additions & 18 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.latlon</groupId>
<artifactId>j2ep</artifactId>
<version>1.3-securityproxy-master-SNAPSHOT</version>
<packaging>jar</packaging>
<version>1.2-securityproxy-master</version>
<name>j2ep</name>
<description>Fork of jEasy Extensible Proxy - svn://svn.code.sf.net/p/j2ep/code/trunk</description>
<build>
Expand All @@ -16,7 +16,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.15</version>
<version>2.22.1</version>
<configuration>
<excludes>
<exclude>**/PostTest*</exclude>
Expand All @@ -33,20 +33,19 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<version>3.8.0</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>

</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-digester</groupId>
<artifactId>commons-digester</artifactId>
<version>1.7</version>
<version>1.8.1</version>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
Expand All @@ -57,12 +56,12 @@
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.3</version>
<version>1.11</version>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.5</version>
<version>1.9.3</version>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
Expand All @@ -88,18 +87,18 @@
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.3</version>
<version>1.1.3</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.4</version>
<version>2.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<artifactId>junit</artifactId>
<groupId>junit</groupId>
<version>3.8.1</version>
<version>3.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -115,18 +114,15 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>aspectj</groupId>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.2.1</version>
<version>1.5.4</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<server.url>http://localhost:8080</server.url>
<catalina.home />
<!-- Sonar config -->
<sonar.host.url>http://vento.lat-lon:9000</sonar.host.url>
<sonar.jdbc.url>jdbc:postgresql://habub/sonar</sonar.jdbc.url>
<catalina.home></catalina.home>
</properties>

<scm>
Expand Down

0 comments on commit 657c929

Please sign in to comment.