Author: mgrigorov
Date: Tue Jan 25 10:02:16 2011
New Revision: 1063199
URL: http://svn.apache.org/viewvc?rev=1063199&view=rev
Log:
WICKET-3365 1.5-RC1 sources seem to be missing in Maven repository
Do not create (and deploy) -tests.jar for this project.
Modified:
wicket/trunk/wicket/pom.xml
Modified: wicket/trunk/wicket/pom.xml
URL:
http://svn.apache.org/viewvc/wicket/trunk/wicket/pom.xml?rev=1063199&r1=1063198&r2=1063199&view=diff
==============================================================================
--- wicket/trunk/wicket/pom.xml (original)
+++ wicket/trunk/wicket/pom.xml Tue Jan 25 10:02:16 2011
@@ -22,4 +22,24 @@
<version>${project.parent.version}</version>
</dependency>
</dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <!-- Do not create (and deploy) -tests.jar for this
project -->
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.3.1</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>test-jar</goal>
+ </goals>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
</project>