Author: sagara
Date: Sun Dec  6 15:22:32 2009
New Revision: 887691

URL: http://svn.apache.org/viewvc?rev=887691&view=rev
Log:
add Maven assembly descriptors for packaging.

Added:
    webservices/woden/trunk/java/src/
    webservices/woden/trunk/java/src/main/
    webservices/woden/trunk/java/src/main/assembly/
    webservices/woden/trunk/java/src/main/assembly/component.xml   (with props)
    webservices/woden/trunk/java/src/main/assembly/dom.xml   (with props)
    webservices/woden/trunk/java/src/main/assembly/om.xml   (with props)
    webservices/woden/trunk/java/src/main/assembly/src.xml   (with props)

Added: webservices/woden/trunk/java/src/main/assembly/component.xml
URL: 
http://svn.apache.org/viewvc/webservices/woden/trunk/java/src/main/assembly/component.xml?rev=887691&view=auto
==============================================================================
--- webservices/woden/trunk/java/src/main/assembly/component.xml (added)
+++ webservices/woden/trunk/java/src/main/assembly/component.xml Sun Dec  6 
15:22:32 2009
@@ -0,0 +1,63 @@
+<!--
+  ~ 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.
+  -->
+  <component>
+    <fileSets> 
+        <fileSet>
+            <directory>legal</directory>
+            <outputDirectory>lib</outputDirectory>
+            <includes>
+                <include>**/*</include>
+            </includes>
+        </fileSet>
+                <fileSet>
+            <directory>target/site</directory>
+            <outputDirectory>docs</outputDirectory>
+            <includes>
+                <include>**/*</include>
+            </includes>
+        </fileSet>
+    </fileSets>
+       <files>
+        <file>
+            <source>README</source>
+            <outputDirectory>/</outputDirectory>
+            <filtered>true</filtered>
+            <fileMode>0644</fileMode>
+        </file>
+                <file>
+            <source>NOTICE</source>
+            <outputDirectory>/</outputDirectory>
+            <filtered>true</filtered>
+            <fileMode>0644</fileMode>
+        </file>
+                <file>
+            <source>LICENSE</source>
+            <outputDirectory>/</outputDirectory>
+            <filtered>true</filtered>
+            <fileMode>0644</fileMode>
+        </file>
+        <file>
+            <source>release-notes.html</source>
+            <outputDirectory>/</outputDirectory>
+            <filtered>true</filtered>
+            <fileMode>0644</fileMode>
+        </file>        
+    </files>
+       
+ </component>

Propchange: webservices/woden/trunk/java/src/main/assembly/component.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: webservices/woden/trunk/java/src/main/assembly/dom.xml
URL: 
http://svn.apache.org/viewvc/webservices/woden/trunk/java/src/main/assembly/dom.xml?rev=887691&view=auto
==============================================================================
--- webservices/woden/trunk/java/src/main/assembly/dom.xml (added)
+++ webservices/woden/trunk/java/src/main/assembly/dom.xml Sun Dec  6 15:22:32 
2009
@@ -0,0 +1,70 @@
+<!--
+  ~ 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>dom</id>
+    <includeBaseDirectory>false</includeBaseDirectory> 
+    <baseDirectory>woden-dom-${version}</baseDirectory>
+    <formats>
+        <format>zip</format>
+               <format>tar.gz</format>
+               <format>tar.bz2</format>
+    </formats>
+    <includeSiteDirectory>false</includeSiteDirectory>
+    <componentDescriptors>
+         
<componentDescriptor>src/main/assembly/component.xml</componentDescriptor>
+     </componentDescriptors>    
+    
+  
+   <moduleSets>
+        <moduleSet>
+            <includes>
+                            <include>org.apache.woden:woden-qname</include>
+                                <include>org.apache.woden:woden-api</include>
+                                
<include>org.apache.woden:woden-impl-commons</include>
+                 <include>org.apache.woden:woden-tool</include>
+                 <include>org.apache.woden:woden-ant</include> 
+            </includes>
+            <binaries>
+                <outputDirectory>lib</outputDirectory>
+                <unpack>false</unpack>
+                <includeDependencies>false</includeDependencies>
+            </binaries>
+        </moduleSet>
+        <moduleSet>
+            <includes>                
+                <include>org.apache.woden:woden-impl-dom</include>             
                                
+            </includes>
+            <binaries>
+                <outputDirectory>lib</outputDirectory>
+                <unpack>false</unpack>
+                <includeDependencies>true</includeDependencies>
+                                <dependencySets>
+                    <dependencySet>
+                        <outputDirectory>lib</outputDirectory>
+                        <includes>                                             
                                
+                            
<include>org.apache.ws.commons.schema:XmlSchema</include>
+                            <include>wsdl4j:wsdl4j</include> 
+                            <include>commons-logging:commons-logging</include> 
                                                                        
+                        </includes>
+                    </dependencySet>
+                               </dependencySets>
+           </binaries>
+    </moduleSet>
+   </moduleSets>
+</assembly>

Propchange: webservices/woden/trunk/java/src/main/assembly/dom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: webservices/woden/trunk/java/src/main/assembly/om.xml
URL: 
http://svn.apache.org/viewvc/webservices/woden/trunk/java/src/main/assembly/om.xml?rev=887691&view=auto
==============================================================================
--- webservices/woden/trunk/java/src/main/assembly/om.xml (added)
+++ webservices/woden/trunk/java/src/main/assembly/om.xml Sun Dec  6 15:22:32 
2009
@@ -0,0 +1,73 @@
+<!--
+  ~ 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>om</id>
+    <includeBaseDirectory>false</includeBaseDirectory> 
+    <baseDirectory>woden-om-${version}</baseDirectory>
+    <formats>
+        <format>zip</format>
+               <format>tar.gz</format>
+               <format>tar.bz2</format>
+    </formats>
+    <includeSiteDirectory>false</includeSiteDirectory>
+    <componentDescriptors>
+         
<componentDescriptor>src/main/assembly/component.xml</componentDescriptor>
+     </componentDescriptors>    
+    
+   <moduleSets>
+    <moduleSet>
+            <includes>
+                            <include>org.apache.woden:woden-qname</include>
+                                <include>org.apache.woden:woden-api</include>
+                                
<include>org.apache.woden:woden-impl-commons</include>
+                 <include>org.apache.woden:woden-tool</include>
+                 <include>org.apache.woden:woden-ant</include> 
+            </includes>
+            <binaries>
+                <outputDirectory>lib</outputDirectory>
+                <unpack>false</unpack>
+                <includeDependencies>false</includeDependencies>
+            </binaries>
+        </moduleSet>
+    <moduleSet>
+            <includes>                
+                <include>org.apache.woden:woden-impl-om</include>  
+            </includes>
+            <binaries>
+                <outputDirectory>lib</outputDirectory>
+                <unpack>false</unpack>
+                <includeDependencies>true</includeDependencies>
+                                <dependencySets>
+                    <dependencySet>
+                        <outputDirectory>lib</outputDirectory>
+                        <includes>
+                            
<include>org.apache.ws.commons.schema:XmlSchema</include>
+                            <include>wsdl4j:wsdl4j</include> 
+                            <include>commons-logging:commons-logging</include> 
+                            
<include>org.apache.ws.commons.axiom:axiom-impl</include>
+                                                       
<include>org.apache.ws.commons.axiom:axiom-api</include>
+                            <include>org.codehaus.woodstox:wstx-asl</include>
+                            
<include>org.apache.geronimo.specs:geronimo-stax-api_1.0_spec</include>         
                                           
+                        </includes>
+                    </dependencySet>
+                               </dependencySets>
+           </binaries>
+    </moduleSet>
+   </moduleSets>
+</assembly>

Propchange: webservices/woden/trunk/java/src/main/assembly/om.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: webservices/woden/trunk/java/src/main/assembly/src.xml
URL: 
http://svn.apache.org/viewvc/webservices/woden/trunk/java/src/main/assembly/src.xml?rev=887691&view=auto
==============================================================================
--- webservices/woden/trunk/java/src/main/assembly/src.xml (added)
+++ webservices/woden/trunk/java/src/main/assembly/src.xml Sun Dec  6 15:22:32 
2009
@@ -0,0 +1,53 @@
+<!--
+  ~ 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>
+    <includeBaseDirectory>true</includeBaseDirectory> 
+    <baseDirectory>woden-${version}</baseDirectory>
+    <formats>
+        <format>zip</format>
+               <format>tar.gz</format>
+               <format>tar.bz2</format>
+    </formats>
+    <fileSets>
+        <fileSet>
+            <includes>
+                <include>**/*</include>
+            </includes>
+            <excludes>
+                <exclude>*.ipr</exclude>
+                <exclude>*.iws</exclude>
+                <exclude>*.iml</exclude>
+                               <exclude>*.classpath</exclude>
+                <exclude>apache-boilerplate.txt</exclude>
+                               <exclude>build.properties</exclude>
+                               <exclude>build.xml</exclude>
+                               <exclude>KEYS</exclude>
+                               
<exclude>woden-eclipse-formatter-conventions.xml</exclude>
+                <exclude>woden-1.0.0M6-test-results.html</exclude> 
+                <exclude>**/target</exclude>
+                <exclude>**/target/**</exclude>
+                <exclude>**/target/**/*</exclude>                              
+                               <exclude>woden-ant/downloads/**</exclude>
+                               
<exclude>woden-ant/src/test/resources/w3c/**</exclude>
+                               <exclude>resources/**</exclude>                 
        
+            </excludes>
+        </fileSet>
+    </fileSets>
+ </assembly>

Propchange: webservices/woden/trunk/java/src/main/assembly/src.xml
------------------------------------------------------------------------------
    svn:eol-style = native



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to