Author: mgrigorov
Date: Sat Jan 22 15:11:00 2011
New Revision: 1062171
URL: http://svn.apache.org/viewvc?rev=1062171&view=rev
Log:
WICKET-3365 1.5-RC1 sources seem to be missing in Maven repository
Do not deploy wicket-sources.jar. The project has no .java files.
Modified:
wicket/trunk/wicket/pom.xml
Modified: wicket/trunk/wicket/pom.xml
URL:
http://svn.apache.org/viewvc/wicket/trunk/wicket/pom.xml?rev=1062171&r1=1062170&r2=1062171&view=diff
==============================================================================
--- wicket/trunk/wicket/pom.xml (original)
+++ wicket/trunk/wicket/pom.xml Sat Jan 22 15:11:00 2011
@@ -87,6 +87,16 @@
</execution>
</executions>
</plugin>
- </plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <configuration>
+ <!-- Do not deploy -sources.jar file.
+ This project has no .java files
+ -->
+ <attach>false</attach>
+ </configuration>
+ </plugin>
+ </plugins>
</build>
</project>