Re: wicket-spring dependency in maven repository

2008-11-04 Thread Antony Stubbs

I've opened a jira issue
https://issues.apache.org/jira/browse/WICKET-1913



Erik van Oosten wrote:
 
 Doug Donohoe wrote:
 I'm using wicket-spring-annot and ran into a small problem with maven
 dependencies.  The wicket-spring-annot project depends on wicket-spring.

   
 
 This has come up a number of times already. Hopefully not as often in 
 the future as it is now also on the wiki :)
 http://cwiki.apache.org/WICKET/spring.html
 
 Regards,
 Erik.
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 


-
___

http://stubbisms.wordpress.com http://stubbisms.wordpress.com 
-- 
View this message in context: 
http://www.nabble.com/wicket-spring-dependency-in-maven-repository-tp16764208p2034.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: wicket-spring dependency in maven repository

2008-04-19 Thread Erik van Oosten

Doug Donohoe wrote:

I'm using wicket-spring-annot and ran into a small problem with maven
dependencies.  The wicket-spring-annot project depends on wicket-spring.

  


This has come up a number of times already. Hopefully not as often in 
the future as it is now also on the wiki :)

http://cwiki.apache.org/WICKET/spring.html

Regards,
   Erik.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



wicket-spring dependency in maven repository

2008-04-18 Thread Doug Donohoe

I'm using wicket-spring-annot and ran into a small problem with maven
dependencies.  The wicket-spring-annot project depends on wicket-spring.

Wicket-spring in turn depends on the entire monolithic spring.jar instead of
the now-preferred spring-core.jar.  This caused a problem in my environment
in that it pulled spring 2.0 down whereas I'm already using spring 2.5.  In
the future, the wicket-spring team may wish to pull this dependency or use
spring-core.

  dependency
  groupIdorg.springframework/groupId
  artifactIdspring/artifactId
  /dependency

Anyhow, to not pull this in, I utilized the exclusions feature of maven:

  dependency
  groupIdorg.apache.wicket/groupId
  artifactIdwicket-spring-annot/artifactId
  version1.3.3/version
  !-- exclude spring framework that wicket pulls in --
  exclusions
exclusion
  groupIdorg.springframework/groupId
  artifactIdspring/artifactId
/exclusion
  /exclusions
/dependency

Just an FYI.
-- 
View this message in context: 
http://www.nabble.com/wicket-spring-dependency-in-maven-repository-tp16764208p16764208.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]