From 45c54c558c5860a027cab2d2e5cb3119c532569a Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Wed, 13 May 2009 06:16:05 +0000 Subject: [PATCH] Updated build to use maven.springframework.org deps --- acl/pom.xml | 6 +- cas/pom.xml | 4 +- config/pom.xml | 6 +- core/pom.xml | 23 ++-- .../security/MockJoinPoint.java | 4 + itest/misc/pom.xml | 2 +- itest/pom.xml | 2 +- openid/pom.xml | 6 +- pom.xml | 118 ++++++++---------- portlet/pom.xml | 4 +- samples/cas/client/pom.xml | 8 +- samples/contacts/pom.xml | 10 +- samples/dms/pom.xml | 6 +- samples/ldap/pom.xml | 6 +- samples/openid/pom.xml | 8 +- samples/portlet/pom.xml | 4 +- samples/preauth/pom.xml | 2 +- samples/tutorial/pom.xml | 8 +- sandbox/heavyduty/pom.xml | 12 +- sandbox/other/pom.xml | 8 +- sandbox/webflow/pom.xml | 12 +- taglibs/pom.xml | 4 +- web/pom.xml | 6 +- 23 files changed, 128 insertions(+), 141 deletions(-) diff --git a/acl/pom.xml b/acl/pom.xml index d27e35e1ab..ddd39c4334 100644 --- a/acl/pom.xml +++ b/acl/pom.xml @@ -26,15 +26,15 @@ org.springframework - org.springframework.context.support + spring-context-support org.springframework - org.springframework.jdbc + spring-jdbc org.springframework - org.springframework.test + spring-test test diff --git a/cas/pom.xml b/cas/pom.xml index ca812b08df..48de2a4b40 100644 --- a/cas/pom.xml +++ b/cas/pom.xml @@ -33,11 +33,11 @@ org.springframework - org.springframework.transaction + spring-tx org.springframework - org.springframework.test + spring-test true diff --git a/config/pom.xml b/config/pom.xml index 6f34aac0f4..c8346e4520 100644 --- a/config/pom.xml +++ b/config/pom.xml @@ -52,12 +52,12 @@ org.springframework - org.springframework.jdbc + spring-jdbc test org.springframework - org.springframework.web + spring-web test @@ -98,7 +98,7 @@ org.springframework - org.springframework.test + spring-test test diff --git a/core/pom.xml b/core/pom.xml index eb3eecf903..57d236b9f9 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -12,51 +12,52 @@ org.springframework - org.springframework.expression + spring-expression - + org.springframework - org.springframework.core + spring-core org.springframework - org.springframework.context + spring-context org.springframework - org.springframework.transaction + spring-tx org.springframework - org.springframework.aop + spring-aop org.springframework - org.springframework.jdbc + spring-jdbc true org.springframework - org.springframework.web + spring-web true org.springframework - org.springframework.test + spring-test true org.aspectj - com.springsource.org.aspectj.runtime + aspectjrt org.aspectj - com.springsource.org.aspectj.weaver + aspectjweaver cglib diff --git a/core/src/test/java/org/springframework/security/MockJoinPoint.java b/core/src/test/java/org/springframework/security/MockJoinPoint.java index 158643addd..041175cd7e 100644 --- a/core/src/test/java/org/springframework/security/MockJoinPoint.java +++ b/core/src/test/java/org/springframework/security/MockJoinPoint.java @@ -161,5 +161,9 @@ public class MockJoinPoint implements JoinPoint { public String toShortString() { throw new UnsupportedOperationException("mock not implemented"); } + + public int getId() { + throw new UnsupportedOperationException("mock not implemented"); + } } } diff --git a/itest/misc/pom.xml b/itest/misc/pom.xml index 566adb07d7..e07b6d6a4d 100644 --- a/itest/misc/pom.xml +++ b/itest/misc/pom.xml @@ -14,7 +14,7 @@ org.springframework - org.springframework.test + spring-test 2.5.5 test diff --git a/itest/pom.xml b/itest/pom.xml index 34dc1ae730..fc1ad5ccce 100644 --- a/itest/pom.xml +++ b/itest/pom.xml @@ -17,7 +17,7 @@ org.springframework - org.springframework.test + spring-test org.springframework.security diff --git a/openid/pom.xml b/openid/pom.xml index 8a03268b6e..5a1ed9394f 100644 --- a/openid/pom.xml +++ b/openid/pom.xml @@ -26,17 +26,17 @@ org.springframework - org.springframework.core + spring-core true org.springframework - org.springframework.web + spring-web true org.springframework - org.springframework.test + spring-test true diff --git a/pom.xml b/pom.xml index d59163992b..6689d019d5 100644 --- a/pom.xml +++ b/pom.xml @@ -75,6 +75,7 @@ + true @@ -115,23 +106,10 @@ false - com.springsource.repository.bundles.milestone - SpringSource Enterprise Bundle Repository - SpringSource Milestone Releases - http://repository.springsource.com/maven/bundles/milestone - - + Spring Framework Maven Milestone Releases + Spring Framework Maven Milestone Releases (Maven Central Format) + http://maven.springframework.org/milestone + @@ -607,23 +585,23 @@ org.springframework - org.springframework.core + spring-core ${spring.version} - org.apache.commons - com.springsource.org.apache.commons.logging + commons-logging + commons-logging org.springframework - org.springframework.expression + spring-expression ${spring.version} - org.apache.commons - com.springsource.org.apache.commons.logging + commons-logging + commons-logging + quartz + quartz + org.springframework - org.springframework.web + spring-web ${spring.version} - org.apache.commons - com.springsource.org.apache.commons.logging + commons-logging + commons-logging org.springframework - org.springframework.web.servlet + spring-webmvc ${spring.version} - org.apache.commons - com.springsource.org.apache.commons.logging + commons-logging + commons-logging @@ -747,33 +730,32 @@ org.aspectj - com.springsource.org.aspectj.runtime - 1.6.2.RELEASE + aspectjrt + 1.6.4 org.aspectj - com.springsource.org.aspectj.weaver - 1.6.2.RELEASE + aspectjweaver + 1.6.4 - - + - asm asm-all 2.2.3 true runtime +--> cglib cglib-nodep diff --git a/portlet/pom.xml b/portlet/pom.xml index 529fa9922d..c2d0a109a4 100644 --- a/portlet/pom.xml +++ b/portlet/pom.xml @@ -27,12 +27,12 @@ org.springframework - org.springframework.web.portlet + spring-webmvc-portlet ${spring.version} org.springframework - org.springframework.test + spring-test ${spring.version} test diff --git a/samples/cas/client/pom.xml b/samples/cas/client/pom.xml index caca8c0c1b..4e8f65065c 100644 --- a/samples/cas/client/pom.xml +++ b/samples/cas/client/pom.xml @@ -27,20 +27,20 @@ org.springframework - org.springframework.web + spring-web org.springframework - org.springframework.web.servlet + spring-webmvc org.springframework - org.springframework.jdbc + spring-jdbc runtime org.springframework - org.springframework.aop + spring-aop runtime diff --git a/samples/contacts/pom.xml b/samples/contacts/pom.xml index 098b3277a6..d77e570ca5 100644 --- a/samples/contacts/pom.xml +++ b/samples/contacts/pom.xml @@ -32,22 +32,22 @@ org.springframework - org.springframework.web.servlet + spring-webmvc compile - + org.springframework - org.springframework.jdbc + spring-jdbc compile org.springframework - org.springframework.aop + spring-aop runtime org.springframework - org.springframework.test + spring-test test diff --git a/samples/dms/pom.xml b/samples/dms/pom.xml index c2526ad084..582e577a36 100644 --- a/samples/dms/pom.xml +++ b/samples/dms/pom.xml @@ -20,7 +20,7 @@ org.springframework - org.springframework.jdbc + spring-jdbc javax.servlet @@ -28,12 +28,12 @@ org.springframework - org.springframework.aop + spring-aop runtime org.springframework - org.springframework.test + spring-test ${spring.version} diff --git a/samples/ldap/pom.xml b/samples/ldap/pom.xml index 7f0918d4f4..206a2bb4a1 100644 --- a/samples/ldap/pom.xml +++ b/samples/ldap/pom.xml @@ -27,16 +27,16 @@ org.springframework - org.springframework.web + spring-web org.springframework - org.springframework.web.servlet + spring-webmvc ${spring.version} org.springframework - org.springframework.aop + spring-aop runtime diff --git a/samples/openid/pom.xml b/samples/openid/pom.xml index bde3001c8b..0add842659 100644 --- a/samples/openid/pom.xml +++ b/samples/openid/pom.xml @@ -22,22 +22,22 @@ org.springframework - org.springframework.web + spring-web runtime org.springframework - org.springframework.web.servlet + spring-webmvc runtime org.springframework - org.springframework.jdbc + spring-jdbc runtime org.springframework - org.springframework.aop + spring-aop runtime diff --git a/samples/portlet/pom.xml b/samples/portlet/pom.xml index 7a96f4e1b4..5783026cff 100644 --- a/samples/portlet/pom.xml +++ b/samples/portlet/pom.xml @@ -32,12 +32,12 @@ org.springframework - org.springframework.web.portlet + spring-webmvc-portlet ${spring.version} org.springframework - org.springframework.test + spring-test org.springframework - org.springframework.jdbc + spring-jdbc true org.springframework - org.springframework.test + spring-test true