Are you sure this is working? mvn clean install -Pgenerate-assembly does not seem to produce any source in the tarball. Am I missing something?
Sean On 5/12/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
Author: mmarinschek Date: Fri May 12 16:05:23 2006 New Revision: 405931 URL: http://svn.apache.org/viewcvs?rev=405931&view=rev Log: added oro to pom.xml, added sources to assembly poms Modified: myfaces/core/trunk/assembly/pom.xml myfaces/tomahawk/trunk/assembly/pom.xml myfaces/tomahawk/trunk/core/pom.xml Modified: myfaces/core/trunk/assembly/pom.xml URL: http://svn.apache.org/viewcvs/myfaces/core/trunk/assembly/pom.xml?rev=405931&r1=405930&r2=405931&view=diff ============================================================================== --- myfaces/core/trunk/assembly/pom.xml (original) +++ myfaces/core/trunk/assembly/pom.xml Fri May 12 16:05:23 2006 @@ -81,7 +81,26 @@ <outputDirectory>${project.build.directory}/tlddoc</outputDirectory> </configuration> </execution> + <execution> + <id>copy-source</id> + <phase>package</phase> + <goals> + <goal>copy</goal> + </goals> + <configuration> + <artifactItems> + <artifactItem> + <groupId>org.apache.myfaces.core</groupId> + <artifactId>myfaces-impl</artifactId> + <version>${version}</version> + <classifier>sources</classifier> + </artifactItem> + + </artifactItems> + <outputDirectory>${project.build.directory}/src</outputDirectory> + </configuration> + </execution> </executions> </plugin> Modified: myfaces/tomahawk/trunk/assembly/pom.xml URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/assembly/pom.xml?rev=405931&r1=405930&r2=405931&view=diff ============================================================================== --- myfaces/tomahawk/trunk/assembly/pom.xml (original) +++ myfaces/tomahawk/trunk/assembly/pom.xml Fri May 12 16:05:23 2006 @@ -85,7 +85,26 @@ <outputDirectory>${project.build.directory}/tlddoc</outputDirectory> </configuration> </execution> + <execution> + <id>copy-source</id> + <phase>package</phase> + <goals> + <goal>copy</goal> + </goals> + <configuration> + <artifactItems> + <artifactItem> + <groupId>org.apache.myfaces.tomahawk</groupId> + <artifactId>tomahawk</artifactId> + <version>${version}</version> + <classifier>sources</classifier> + </artifactItem> + + </artifactItems> + <outputDirectory>${project.build.directory}/src</outputDirectory> + </configuration> + </execution> </executions> </plugin> Modified: myfaces/tomahawk/trunk/core/pom.xml URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/core/pom.xml?rev=405931&r1=405930&r2=405931&view=diff ============================================================================== --- myfaces/tomahawk/trunk/core/pom.xml (original) +++ myfaces/tomahawk/trunk/core/pom.xml Fri May 12 16:05:23 2006 @@ -74,6 +74,13 @@ <scope>compile</scope> </dependency> + <dependency> + <groupId>oro</groupId> + <artifactId>oro</artifactId> + <version>2.0.8</version> + <scope>compile</scope> + </dependency> + <!-- provided dependencies --> <dependency>
