Author: craigmcc Date: Thu Jun 15 00:24:49 2006 New Revision: 414495 URL: http://svn.apache.org/viewvc?rev=414495&view=rev Log: Include the binary JAR files for Shale in the assembly. FIXME - why does the <dependencySets> element work in shale-dist, but not here?
Modified: struts/shale/branches/mvn_reorg/src/main/assembly/dep.xml Modified: struts/shale/branches/mvn_reorg/src/main/assembly/dep.xml URL: http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/src/main/assembly/dep.xml?rev=414495&r1=414494&r2=414495&view=diff ============================================================================== --- struts/shale/branches/mvn_reorg/src/main/assembly/dep.xml (original) +++ struts/shale/branches/mvn_reorg/src/main/assembly/dep.xml Thu Jun 15 00:24:49 2006 @@ -26,6 +26,16 @@ </formats> <includeBaseDirectory>true</includeBaseDirectory> + <!-- Include binary artifacts in the assembly --> + +<!-- FIXME - why doesn't this work? --> + <dependencySets> + <dependencySet> + <outputDirectory>lib</outputDirectory> + <scope>runtime</scope> + </dependencySet> + </dependencySets> + <fileSets> <!-- Include top level directory files in the assembly --> @@ -135,6 +145,26 @@ </includes> </fileSet> + <!-- Include submodule binaries in the assembly --> + <!-- FIXME - should be able to use the <dependencySets> element above --> + + <fileSet> + <directory>.</directory> + <outputDirectory>dist</outputDirectory> + <includes> + <include>shale-clay/target/*.jar</include> + <include>shale-core/target/*.jar</include> +<!-- + <include>shale-designtime/target/*.jar</include> +--> + <include>shale-remoting/target/*.jar</include> + <include>shale-spring/target/*.jar</include> + <include>shale-test/target/*.jar</include> + <include>shale-tiger/target/*.jar</include> + <include>shale-tiles/target/*.jar</include> + </includes> + </fileSet> + </fileSets> -</assembly> \ No newline at end of file +</assembly>