Skip to content
Snippets Groups Projects
Commit dac0c799 authored by Daniel Gerhardt's avatar Daniel Gerhardt
Browse files

Update Maven dependencies and plugins

Fixes memory leak in netty-socketio.
parent 8b50cd17
Branches
Tags
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<packaging>war</packaging> <packaging>war</packaging>
<properties> <properties>
<org.springframework-version>4.0.5.RELEASE</org.springframework-version> <org.springframework-version>4.0.6.RELEASE</org.springframework-version>
<org.springframework.security-version>3.2.4.RELEASE</org.springframework.security-version> <org.springframework.security-version>3.2.4.RELEASE</org.springframework.security-version>
<org.springframework.integration-mail-version>4.0.3.RELEASE</org.springframework.integration-mail-version> <org.springframework.integration-mail-version>4.0.3.RELEASE</org.springframework.integration-mail-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
...@@ -205,17 +205,17 @@ ...@@ -205,17 +205,17 @@
<dependency> <dependency>
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId> <artifactId>slf4j-api</artifactId>
<version>1.6.6</version> <version>1.7.7</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId> <artifactId>slf4j-log4j12</artifactId>
<version>1.6.6</version> <version>1.7.7</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>log4j</groupId> <groupId>log4j</groupId>
<artifactId>log4j</artifactId> <artifactId>log4j</artifactId>
<version>1.2.16</version> <version>1.2.17</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>couchdb4j</groupId> <groupId>couchdb4j</groupId>
...@@ -267,7 +267,7 @@ ...@@ -267,7 +267,7 @@
<dependency> <dependency>
<groupId>com.corundumstudio.socketio</groupId> <groupId>com.corundumstudio.socketio</groupId>
<artifactId>netty-socketio</artifactId> <artifactId>netty-socketio</artifactId>
<version>1.7.1</version> <version>1.7.2</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>javax.inject</groupId> <groupId>javax.inject</groupId>
...@@ -278,7 +278,7 @@ ...@@ -278,7 +278,7 @@
<dependency> <dependency>
<groupId>com.fasterxml.jackson.core</groupId> <groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId> <artifactId>jackson-databind</artifactId>
<version>2.2.2</version> <version>2.4.2</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework</groupId> <groupId>org.springframework</groupId>
...@@ -303,7 +303,7 @@ ...@@ -303,7 +303,7 @@
<dependency> <dependency>
<groupId>org.seleniumhq.selenium</groupId> <groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId> <artifactId>selenium-java</artifactId>
<version>2.25.0</version> <version>2.42.2</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
...@@ -315,7 +315,7 @@ ...@@ -315,7 +315,7 @@
<dependency> <dependency>
<groupId>org.apache.httpcomponents</groupId> <groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId> <artifactId>httpclient</artifactId>
<version>4.3.3</version> <version>4.3.5</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>de.thm.arsnova.connector</groupId> <groupId>de.thm.arsnova.connector</groupId>
...@@ -347,7 +347,7 @@ ...@@ -347,7 +347,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version> <version>3.1</version>
<configuration> <configuration>
<source>1.7</source> <source>1.7</source>
<target>1.7</target> <target>1.7</target>
...@@ -356,7 +356,7 @@ ...@@ -356,7 +356,7 @@
<plugin> <plugin>
<groupId>org.eclipse.jetty</groupId> <groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId> <artifactId>jetty-maven-plugin</artifactId>
<version>9.2.1.v20140609</version> <version>9.2.2.v20140723</version>
<configuration> <configuration>
<scanIntervalSeconds>1</scanIntervalSeconds> <scanIntervalSeconds>1</scanIntervalSeconds>
<webApp> <webApp>
...@@ -385,7 +385,7 @@ ...@@ -385,7 +385,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId> <artifactId>maven-site-plugin</artifactId>
<version>3.3</version> <version>3.4</version>
<configuration> <configuration>
<locales>en</locales> <locales>en</locales>
</configuration> </configuration>
...@@ -393,7 +393,7 @@ ...@@ -393,7 +393,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.12.2</version> <version>2.17</version>
<configuration> <configuration>
<excludes> <excludes>
<exclude>**/Selenium*.java</exclude> <exclude>**/Selenium*.java</exclude>
...@@ -438,7 +438,7 @@ ...@@ -438,7 +438,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId> <artifactId>maven-war-plugin</artifactId>
<version>2.3</version> <version>2.4</version>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment