Author: veithen Date: Sat Dec 13 17:05:00 2008 New Revision: 726324 URL: http://svn.apache.org/viewvc?rev=726324&view=rev Log: WSCOMMONS-253: In the binary distribution, added an axiom.jar that bundles api, impl, dom and c14n.
Added: webservices/commons/trunk/modules/axiom/src/main/assembly/jar.xml (with props) Modified: webservices/commons/trunk/modules/axiom/pom.xml webservices/commons/trunk/modules/axiom/src/main/assembly/bin.xml Modified: webservices/commons/trunk/modules/axiom/pom.xml URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/pom.xml?rev=726324&r1=726323&r2=726324&view=diff ============================================================================== --- webservices/commons/trunk/modules/axiom/pom.xml (original) +++ webservices/commons/trunk/modules/axiom/pom.xml Sat Dec 13 17:05:00 2008 @@ -322,6 +322,7 @@ <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> + <descriptor>src/main/assembly/jar.xml</descriptor> <descriptor>src/main/assembly/bin.xml</descriptor> <descriptor>src/main/assembly/src.xml</descriptor> </descriptors> Modified: webservices/commons/trunk/modules/axiom/src/main/assembly/bin.xml URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/src/main/assembly/bin.xml?rev=726324&r1=726323&r2=726324&view=diff ============================================================================== --- webservices/commons/trunk/modules/axiom/src/main/assembly/bin.xml (original) +++ webservices/commons/trunk/modules/axiom/src/main/assembly/bin.xml Sat Dec 13 17:05:00 2008 @@ -59,6 +59,11 @@ <filtered>true</filtered> <fileMode>0644</fileMode> </file> + <file> + <source>${project.build.directory}/axiom-${project.version}-jar.jar</source> + <outputDirectory>/</outputDirectory> + <destName>axiom.jar</destName> + </file> </files> <moduleSets> <moduleSet> Added: webservices/commons/trunk/modules/axiom/src/main/assembly/jar.xml URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/src/main/assembly/jar.xml?rev=726324&view=auto ============================================================================== --- webservices/commons/trunk/modules/axiom/src/main/assembly/jar.xml (added) +++ webservices/commons/trunk/modules/axiom/src/main/assembly/jar.xml Sat Dec 13 17:05:00 2008 @@ -0,0 +1,39 @@ +<!-- + ~ 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>jar</id> + <includeBaseDirectory>false</includeBaseDirectory> + <formats> + <format>jar</format> + </formats> + <moduleSets> + <moduleSet> + <includes> + <include>org.apache.ws.commons.axiom:axiom-api</include> + <include>org.apache.ws.commons.axiom:axiom-impl</include> + <include>org.apache.ws.commons.axiom:axiom-dom</include> + <include>org.apache.ws.commons.axiom:axiom-c14n</include> + </includes> + <binaries> + <includeDependencies>false</includeDependencies> + <unpack>true</unpack> + </binaries> + </moduleSet> + </moduleSets> +</assembly> Propchange: webservices/commons/trunk/modules/axiom/src/main/assembly/jar.xml ------------------------------------------------------------------------------ svn:eol-style = native