Author: niallp
Date: Thu Apr 12 20:52:58 2007
New Revision: 528343

URL: http://svn.apache.org/viewvc?view=rev&rev=528343
Log:
Add assembly to create source and binary distros

Added:
    jakarta/commons/proper/jci/trunk/src/assembly/
    jakarta/commons/proper/jci/trunk/src/assembly/bin.xml   (with props)
    jakarta/commons/proper/jci/trunk/src/assembly/src.xml   (with props)
Modified:
    jakarta/commons/proper/jci/trunk/pom.xml

Modified: jakarta/commons/proper/jci/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/jci/trunk/pom.xml?view=diff&rev=528343&r1=528342&r2=528343
==============================================================================
--- jakarta/commons/proper/jci/trunk/pom.xml (original)
+++ jakarta/commons/proper/jci/trunk/pom.xml Thu Apr 12 20:52:58 2007
@@ -94,6 +94,16 @@
                     </execution>
                 </executions>
             </plugin>            
+            <plugin>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <configuration>
+                    <descriptors>
+                        <descriptor>src/assembly/bin.xml</descriptor>
+                        <descriptor>src/assembly/src.xml</descriptor>
+                    </descriptors>
+                    <tarLongFileMode>gnu</tarLongFileMode>
+                </configuration>
+            </plugin>
         </plugins>
         <extensions>
             <extension>

Added: jakarta/commons/proper/jci/trunk/src/assembly/bin.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/jci/trunk/src/assembly/bin.xml?view=auto&rev=528343
==============================================================================
--- jakarta/commons/proper/jci/trunk/src/assembly/bin.xml (added)
+++ jakarta/commons/proper/jci/trunk/src/assembly/bin.xml Thu Apr 12 20:52:58 
2007
@@ -0,0 +1,85 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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.
+-->
+<assembly>
+    <id>bin</id>
+    <formats>
+        <format>tar.gz</format>
+        <format>zip</format>
+    </formats>
+    <includeSiteDirectory>false</includeSiteDirectory>
+    <fileSets>
+        <fileSet>
+            <includes>
+                <include>LICENSE.txt</include>
+                <include>NOTICE.txt</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>target/site/apidocs</directory>
+            <outputDirectory>apidocs</outputDirectory>
+        </fileSet>
+        <fileSet>
+            <outputDirectory>lib</outputDirectory>
+            <directory>core/target</directory>
+            <includes>
+                <include>*.jar</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <outputDirectory>lib</outputDirectory>
+            <directory>fam/target</directory>
+            <includes>
+                <include>*.jar</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <outputDirectory>lib</outputDirectory>
+            <directory>compilers/eclipse/target</directory>
+            <includes>
+                <include>*.jar</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <outputDirectory>lib</outputDirectory>
+            <directory>compilers/groovy/target</directory>
+            <includes>
+                <include>*.jar</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <outputDirectory>lib</outputDirectory>
+            <directory>compilers/janino/target</directory>
+            <includes>
+                <include>*.jar</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <outputDirectory>lib</outputDirectory>
+            <directory>compilers/javac/target</directory>
+            <includes>
+                <include>*.jar</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <outputDirectory>lib</outputDirectory>
+            <directory>compilers/rhino/target</directory>
+            <includes>
+                <include>*.jar</include>
+            </includes>
+        </fileSet>
+    </fileSets>
+</assembly>

Propchange: jakarta/commons/proper/jci/trunk/src/assembly/bin.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/commons/proper/jci/trunk/src/assembly/bin.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: jakarta/commons/proper/jci/trunk/src/assembly/src.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/jci/trunk/src/assembly/src.xml?view=auto&rev=528343
==============================================================================
--- jakarta/commons/proper/jci/trunk/src/assembly/src.xml (added)
+++ jakarta/commons/proper/jci/trunk/src/assembly/src.xml Thu Apr 12 20:52:58 
2007
@@ -0,0 +1,66 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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.
+-->
+<assembly>
+    <id>src</id>
+    <formats>
+        <format>tar.gz</format>
+        <format>zip</format>
+    </formats>
+<!--
+    <baseDirectory>${project.build.finalName}-src</baseDirectory>
+-->
+    <fileSets>
+        <fileSet>
+            <includes>
+                <include>LICENSE.txt</include>
+                <include>NOTICE.txt</include>
+                <include>pom.xml</include>
+                <include>core/pom.xml</include>
+                <include>fam/pom.xml</include>
+                <include>compilers/eclipse/pom.xml</include>
+                <include>compilers/groovy/pom.xml</include>
+                <include>compilers/janino/pom.xml</include>
+                <include>compilers/javac/pom.xml</include>
+                <include>compilers/rhino/pom.xml</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>src</directory>
+        </fileSet>
+        <fileSet>
+            <directory>core/src</directory>
+        </fileSet>
+        <fileSet>
+            <directory>fam/src</directory>
+        </fileSet>
+        <fileSet>
+            <directory>compilers/eclipse/src</directory>
+        </fileSet>
+        <fileSet>
+            <directory>compilers/groovy/src</directory>
+        </fileSet>
+        <fileSet>
+            <directory>compilers/janino/src</directory>
+        </fileSet>
+        <fileSet>
+            <directory>compilers/javac/src</directory>
+        </fileSet>
+        <fileSet>
+            <directory>compilers/rhino/src</directory>
+        </fileSet>
+    </fileSets>
+</assembly>

Propchange: jakarta/commons/proper/jci/trunk/src/assembly/src.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/commons/proper/jci/trunk/src/assembly/src.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to