Author: craigmcc Date: Mon Jun 12 18:40:30 2006 New Revision: 413781 URL: http://svn.apache.org/viewvc?rev=413781&view=rev Log: Add filesets for the rest of the top-level framework modules (but comment out the one for shale-designtime ... I still need to do cleanup work on that module). Issue -- it copies all the sources, but the only shale-*.jar included is the one for core. Also, add an Apache license at the top of the assembly configuration file.
Modified: struts/shale/branches/mvn_reorg/shale-dist/src/assemble/dist.xml Modified: struts/shale/branches/mvn_reorg/shale-dist/src/assemble/dist.xml URL: http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/shale-dist/src/assemble/dist.xml?rev=413781&r1=413780&r2=413781&view=diff ============================================================================== --- struts/shale/branches/mvn_reorg/shale-dist/src/assemble/dist.xml (original) +++ struts/shale/branches/mvn_reorg/shale-dist/src/assemble/dist.xml Mon Jun 12 18:40:30 2006 @@ -1,4 +1,25 @@ +<!-- +/* + * Copyright 2006 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * $Id$ + */ +--> + <assembly> + <id>dist</id> <formats> <format>zip</format> @@ -24,6 +45,14 @@ </includes> </fileSet> <fileSet> + <directory>../shale-clay</directory> + <outputDirectory>src/shale-clay</outputDirectory> + <includes> + <include>pom.xml</include> + <include>src/</include> + </includes> + </fileSet> + <fileSet> <directory>../shale-core</directory> <outputDirectory>src/shale-core</outputDirectory> <includes> @@ -31,6 +60,56 @@ <include>src/</include> </includes> </fileSet> +<!-- + <fileSet> + <directory>../shale-designtime</directory> + <outputDirectory>src/shale-designtime</outputDirectory> + <includes> + <include>pom.xml</include> + <include>src/</include> + </includes> + </fileSet> +--> + <fileSet> + <directory>../shale-remoting</directory> + <outputDirectory>src/shale-remoting</outputDirectory> + <includes> + <include>pom.xml</include> + <include>src/</include> + </includes> + </fileSet> + <fileSet> + <directory>../shale-spring</directory> + <outputDirectory>src/shale-spring</outputDirectory> + <includes> + <include>pom.xml</include> + <include>src/</include> + </includes> + </fileSet> + <fileSet> + <directory>../shale-test</directory> + <outputDirectory>src/shale-test</outputDirectory> + <includes> + <include>pom.xml</include> + <include>src/</include> + </includes> + </fileSet> + <fileSet> + <directory>../shale-tiger</directory> + <outputDirectory>src/shale-tiger</outputDirectory> + <includes> + <include>pom.xml</include> + <include>src/</include> + </includes> + </fileSet> + <fileSet> + <directory>../shale-tiles</directory> + <outputDirectory>src/shale-tiles</outputDirectory> + <includes> + <include>pom.xml</include> + <include>src/</include> + </includes> + </fileSet> <!-- Include the website docs in the assembly --> <fileSet> @@ -38,9 +117,40 @@ <outputDirectory>docs/</outputDirectory> </fileSet> <fileSet> + <directory>../shale-clay/target/site</directory> + <outputDirectory>docs/shale-clay</outputDirectory> + </fileSet> + <fileSet> <directory>../shale-core/target/site</directory> <outputDirectory>docs/shale-core</outputDirectory> </fileSet> +<!-- + <fileSet> + <directory>../shale-designtime/target/site</directory> + <outputDirectory>docs/shale-designtime</outputDirectory> + </fileSet> +--> + <fileSet> + <directory>../shale-remoting/target/site</directory> + <outputDirectory>docs/shale-remoting</outputDirectory> + </fileSet> + <fileSet> + <directory>../shale-spring/target/site</directory> + <outputDirectory>docs/shale-spring</outputDirectory> + </fileSet> + <fileSet> + <directory>../shale-test/target/site</directory> + <outputDirectory>docs/shale-test</outputDirectory> + </fileSet> + <fileSet> + <directory>../shale-tiger/target/site</directory> + <outputDirectory>docs/shale-tiger</outputDirectory> + </fileSet> + <fileSet> + <directory>../shale-tiles/target/site</directory> + <outputDirectory>docs/shale-tiles</outputDirectory> + </fileSet> </fileSets> -</assembly> \ No newline at end of file + +</assembly>