This is an automated email from the ASF dual-hosted git repository.
mgrigorov pushed a commit to branch wicket-8.x
in repository https://gitbox.apache.org/repos/asf/wicket.git
The following commit(s) were added to refs/heads/wicket-8.x by this push:
new 2d5864b Update minor versions of dependencies
2d5864b is described below
commit 2d5864b30d359c613febef269628f6acf772c64b
Author: Martin Tzvetanov Grigorov <[email protected]>
AuthorDate: Wed Jan 2 00:25:36 2019 +0200
Update minor versions of dependencies
---
pom.xml | 39 ++++++++++++++++------
.../wicket-http2/wicket-http2-undertow/pom.xml | 2 +-
wicket-velocity/pom.xml | 5 +++
3 files changed, 34 insertions(+), 12 deletions(-)
diff --git a/pom.xml b/pom.xml
index 2575b21..c9abf48 100644
--- a/pom.xml
+++ b/pom.xml
@@ -123,23 +123,29 @@
<maven.compiler.target>1.8</maven.compiler.target>
<!-- Project Versions -->
- <cglib.version>3.2.6</cglib.version>
- <jacoco.version>0.7.9</jacoco.version>
+ <cglib.version>3.2.8</cglib.version>
+ <commons-collections.version>3.2.2</commons-collections.version>
+ <commons-collections4.version>4.2</commons-collections4.version>
+ <commons-fileupload.version>1.4</commons-fileupload.version>
+ <commons-lang3.version>3.6</commons-lang3.version>
+ <jacoco.version>0.8.2</jacoco.version>
+ <jackson.version>2.9.8</jackson.version>
<jetty.version>9.4.12.v20180830</jetty.version>
- <joda-time.version>2.9.9</joda-time.version>
+ <joda-time.version>2.10.1</joda-time.version>
<junit.version>4.12</junit.version>
- <spring.version>4.3.10.RELEASE</spring.version>
+ <spring.version>4.3.21.RELEASE</spring.version>
<servlet-api.version>3.1.0</servlet-api.version>
<maven.javadoc.version>2.10.4</maven.javadoc.version>
<maven.surefire.version>3.0.0-M1</maven.surefire.version>
- <mockito.version>2.9.0</mockito.version>
+ <mockito.version>2.23.0</mockito.version>
<slf4j.version>1.7.25</slf4j.version>
<logback.version>1.2.3</logback.version>
<hamcrest.version>2.0.0.0</hamcrest.version>
<objenesis.version>2.6</objenesis.version>
- <aspectj.version>1.8.10</aspectj.version>
+ <aspectj.version>1.8.13</aspectj.version>
<metrics.version>3.2.3</metrics.version>
<forbiddenapis.version>2.6</forbiddenapis.version>
+ <velocity.version>1.7</velocity.version>
</properties>
<dependencyManagement>
@@ -207,7 +213,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
- <version>2.9.0</version>
+ <version>${jackson.version}</version>
<optional>true</optional>
</dependency>
<dependency>
@@ -227,9 +233,14 @@
<version>4.2.2</version>
</dependency>
<dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+
<version>${commons-collections.version}</version>
+ </dependency>
+ <dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
- <version>1.4</version>
+ <version>${commons-fileupload.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
@@ -255,17 +266,23 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
- <version>4.1</version>
+
<version>${commons-collections4.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
- <version>3.6</version>
+ <version>${commons-lang3.version}</version>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
- <version>1.7</version>
+ <version>${velocity.version}</version>
+ <exclusions>
+ <exclusion>
+
<groupId>commons-collections</groupId>
+
<artifactId>commons-collections</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.apache.wicket</groupId>
diff --git a/wicket-experimental/wicket-http2/wicket-http2-undertow/pom.xml
b/wicket-experimental/wicket-http2/wicket-http2-undertow/pom.xml
index 86511b4..f1b7fea 100644
--- a/wicket-experimental/wicket-http2/wicket-http2-undertow/pom.xml
+++ b/wicket-experimental/wicket-http2/wicket-http2-undertow/pom.xml
@@ -38,7 +38,7 @@
<dependency>
<groupId>io.undertow</groupId>
<artifactId>undertow-servlet</artifactId>
- <version>2.0.13.Final</version>
+ <version>2.0.16.Final</version>
<scope>provided</scope>
</dependency>
</dependencies>
diff --git a/wicket-velocity/pom.xml b/wicket-velocity/pom.xml
index de985df..cf10f22 100644
--- a/wicket-velocity/pom.xml
+++ b/wicket-velocity/pom.xml
@@ -31,8 +31,13 @@
users to work with Velocity and Wicket. Particularly useful for
simple CMS like applications.
</description>
+
<dependencies>
<dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ </dependency>
+ <dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
</dependency>