Author: mgrigorov
Date: Thu Jan 20 08:46:15 2011
New Revision: 1061161
URL: http://svn.apache.org/viewvc?rev=1061161&view=rev
Log:
WICKET-3353 'wicket' Maven module brings the other three wicket modules as
transitive dependencies
Declare the dependencies as 'provided' to not bring them as transitive
dependencies in the user applications
Modified:
wicket/trunk/wicket/pom.xml
Modified: wicket/trunk/wicket/pom.xml
URL:
http://svn.apache.org/viewvc/wicket/trunk/wicket/pom.xml?rev=1061161&r1=1061160&r2=1061161&view=diff
==============================================================================
--- wicket/trunk/wicket/pom.xml (original)
+++ wicket/trunk/wicket/pom.xml Thu Jan 20 08:46:15 2011
@@ -19,16 +19,19 @@
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-core</artifactId>
<version>${project.parent.version}</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-util</artifactId>
<version>${project.parent.version}</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-request</artifactId>
<version>${project.parent.version}</version>
+ <scope>provided</scope>
</dependency>
</dependencies>
<build>