Author: ieb
Date: Mon Jan 19 14:32:16 2009
New Revision: 735856
URL: http://svn.apache.org/viewvc?rev=735856&view=rev
Log:
Added profile to enable the build of the assembly at hudson, copied the release
profile and removed things that would require user input.
Modified:
incubator/shindig/trunk/pom.xml
Modified: incubator/shindig/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/pom.xml?rev=735856&r1=735855&r2=735856&view=diff
==============================================================================
--- incubator/shindig/trunk/pom.xml (original)
+++ incubator/shindig/trunk/pom.xml Mon Jan 19 14:32:16 2009
@@ -723,6 +723,44 @@
</profile>
<profile>
+ <id>assemble</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar</goal>
+ <goal>test-jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-javadocs</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ <modules>
+ <module>java</module>
+ <module>java/samples</module>
+ <module>assembly</module>
+ </modules>
+ </profile>
+
+ <profile>
<id>to-committers</id>
<build>
<defaultGoal>xslt:transform</defaultGoal>