Hello Martijn, be more specifically :)
cwilkes, add to the you project pom.xml <dependencies> <dependency> <groupId>org.apache.wicket</groupId> <artifactId>wicket</artifactId> <version>1.3.0-SNAPSHOT</version> <exclusions> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring</artifactId> </exclusion> </exclusions> </dependency> ... This will remove transitive dependency to spring.jar inherited from wicket, and you can add your own dependency ... <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>2.0.6</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>2.0.6</version> </dependency> ... and so on </dependencies> It's possible another maven's artifact being used in your project exclicitly depends on spring.jar To check this use mvn -X package Analys of the output will help you to find the unnnesessary deps and set exclusions in the pom.xml with above manner. Cheers, Sunday, July 22, 2007, 8:28:55 PM, you wrote: > I think that depending on the catch all for spring is probably the > best for Wicket. If you really want to depend on the individual > modules, it is merely a matter of adding excludes to your > wicket-spring dependency and including those you do want. > The reason being: most people (at least those that I know) already > want to use most of Spring, so there is no reason to exchange 1 > dependency for 2, or 3. Because then the majority needs to exclude > those 2 (or 3) dependencies from their poms. > Martijn > On 7/22/07, cwilkes <[EMAIL PROTECTED]> wrote: >> >> Currently the 1.3.0-beta2 version of wicket-parent and wicket-spring depend >> on the large single "spring" jar. Can this be changed to just depend on the >> org.springframework artifacts spring-context and spring-web? >> >> >> -- >> View this message in context: >> http://www.nabble.com/Can-wicket-spring-just-depend-on-spring-context-and-spring-web--tf4125986.html#a11733423 >> Sent from the Wicket - Dev mailing list archive at Nabble.com. >> >> -- Best regards, Oleg mailto:[EMAIL PROTECTED]