You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by ad...@apache.org on 2018/08/10 13:47:15 UTC

wicket git commit: WICKET-6579 Upgrade Spring to 5.x version

Repository: wicket
Updated Branches:
  refs/heads/master 73efc7ce5 -> f8e4d1b00


WICKET-6579 Upgrade Spring to 5.x version


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/f8e4d1b0
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/f8e4d1b0
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/f8e4d1b0

Branch: refs/heads/master
Commit: f8e4d1b00e3154165e4dc6ac5cc4117017848c6b
Parents: 73efc7c
Author: Andrea Del Bene <an...@edenviaggi.it>
Authored: Fri Aug 10 15:46:18 2018 +0200
Committer: Andrea Del Bene <an...@edenviaggi.it>
Committed: Fri Aug 10 15:46:18 2018 +0200

----------------------------------------------------------------------
 pom.xml               | 7 ++++++-
 wicket-spring/pom.xml | 4 ++++
 2 files changed, 10 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/f8e4d1b0/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9752ce9..e7716e0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -127,7 +127,7 @@
 		<jacoco.version>0.7.9</jacoco.version>
 		<jetty.version>9.4.10.v20180503</jetty.version>
 		<junit.version>4.12</junit.version>
-		<spring.version>4.3.10.RELEASE</spring.version>
+		<spring.version>5.0.8.RELEASE</spring.version>
 		<servlet-api.version>3.1.0</servlet-api.version>
 		<maven.javadoc.version>2.10.4</maven.javadoc.version>
 		<maven.surefire.version>2.20</maven.surefire.version>
@@ -492,6 +492,11 @@
 				</exclusions>
 			</dependency>
 			<dependency>
+			    <groupId>org.springframework</groupId>
+			    <artifactId>spring-context</artifactId>
+			    <version>${spring.version}</version>
+			</dependency>
+			<dependency>
 				<groupId>org.springframework</groupId>
 				<artifactId>spring-web</artifactId>
 				<version>${spring.version}</version>

http://git-wip-us.apache.org/repos/asf/wicket/blob/f8e4d1b0/wicket-spring/pom.xml
----------------------------------------------------------------------
diff --git a/wicket-spring/pom.xml b/wicket-spring/pom.xml
index 6209579..24213e8 100644
--- a/wicket-spring/pom.xml
+++ b/wicket-spring/pom.xml
@@ -34,6 +34,10 @@
 			<scope>provided</scope>
 		</dependency>
 		<dependency>
+			<groupId>org.springframework</groupId>
+			<artifactId>spring-context</artifactId>
+		</dependency>
+		<dependency>
 			<groupId>org.apache.wicket</groupId>
 			<artifactId>wicket-core</artifactId>
 			<version>${project.version}</version>