This is an automated email from the ASF dual-hosted git repository.
mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git
The following commit(s) were added to refs/heads/master by this push:
new 7210b92 Update minor versions of dependencies. Extract properties for
the versions
7210b92 is described below
commit 7210b92ffa2e4a04608c5e340f49da06b9b8e03c
Author: Martin Tzvetanov Grigorov <[email protected]>
AuthorDate: Wed Jan 2 00:41:17 2019 +0200
Update minor versions of dependencies. Extract properties for the versions
---
pom.xml | 30 +++++++++++++++++-----
.../wicket-http2/wicket-http2-undertow/pom.xml | 2 +-
wicket-velocity/pom.xml | 4 +++
3 files changed, 29 insertions(+), 7 deletions(-)
diff --git a/pom.xml b/pom.xml
index 3c6fc89..c43cf96 100644
--- a/pom.xml
+++ b/pom.xml
@@ -123,7 +123,13 @@
<!-- Project Versions -->
<cglib.version>3.2.10</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-io.version>2.6</commons-io.version>
+ <commons-lang3.version>3.8.1</commons-lang3.version>
<jacoco.version>0.8.2</jacoco.version>
+ <jackson.version>2.9.8</jackson.version>
<jetty.version>9.4.14.v20181114</jetty.version>
<junit.version>5.3.2</junit.version>
<spring.version>5.1.3.RELEASE</spring.version>
@@ -135,10 +141,11 @@
<logback.version>1.2.3</logback.version>
<hamcrest.version>2.0.0.0</hamcrest.version>
<objenesis.version>3.0.1</objenesis.version>
- <aspectj.version>1.9.1</aspectj.version>
+ <aspectj.version>1.9.2</aspectj.version>
<metrics.version>4.0.5</metrics.version>
<weld.version>3.0.4.Final</weld.version>
<forbiddenapis.version>2.6</forbiddenapis.version>
+ <velocity.version>1.7</velocity.version>
</properties>
<dependencyManagement>
@@ -213,14 +220,19 @@
<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>
<artifactId>commons-io</artifactId>
- <version>2.6</version>
+ <version>${commons-io.version}</version>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
@@ -246,17 +258,23 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
- <version>4.2</version>
+
<version>${commons-collections4.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
- <version>3.8.1</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 b6d10f4..6b9e0de 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 ff6d55f..49f59cd 100644
--- a/wicket-velocity/pom.xml
+++ b/wicket-velocity/pom.xml
@@ -33,6 +33,10 @@
</description>
<dependencies>
<dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ </dependency>
+ <dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
</dependency>