You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by ga...@apache.org on 2009/01/09 18:03:25 UTC

svn commit: r733085 - in /webservices/commons/trunk/modules/axiom: modules/distribution/ pom.xml src/main/ src/main/assembly/ src/main/assembly/bin.xml src/main/assembly/filter.properties src/main/assembly/jar.xml src/main/assembly/src.xml

Author: gawor
Date: Fri Jan  9 09:03:25 2009
New Revision: 733085

URL: http://svn.apache.org/viewvc?rev=733085&view=rev
Log:
use old method to generate the distribution files - undo r732601

Added:
    webservices/commons/trunk/modules/axiom/src/main/
      - copied from r732600, webservices/commons/trunk/modules/axiom/src/main/
    webservices/commons/trunk/modules/axiom/src/main/assembly/
      - copied from r732600, webservices/commons/trunk/modules/axiom/src/main/assembly/
    webservices/commons/trunk/modules/axiom/src/main/assembly/bin.xml
      - copied unchanged from r732600, webservices/commons/trunk/modules/axiom/src/main/assembly/bin.xml
    webservices/commons/trunk/modules/axiom/src/main/assembly/filter.properties
      - copied unchanged from r732600, webservices/commons/trunk/modules/axiom/src/main/assembly/filter.properties
    webservices/commons/trunk/modules/axiom/src/main/assembly/jar.xml
      - copied unchanged from r732600, webservices/commons/trunk/modules/axiom/src/main/assembly/jar.xml
    webservices/commons/trunk/modules/axiom/src/main/assembly/src.xml
      - copied unchanged from r732600, webservices/commons/trunk/modules/axiom/src/main/assembly/src.xml
Removed:
    webservices/commons/trunk/modules/axiom/modules/distribution/
Modified:
    webservices/commons/trunk/modules/axiom/pom.xml

Modified: webservices/commons/trunk/modules/axiom/pom.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/pom.xml?rev=733085&r1=733084&r2=733085&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/pom.xml (original)
+++ webservices/commons/trunk/modules/axiom/pom.xml Fri Jan  9 09:03:25 2009
@@ -325,6 +325,32 @@
                 </plugins>
             </build>
         </profile>
+        <profile>
+            <id>rc</id>
+            <activation>
+                <property>
+                    <name>rc</name>
+                    <value />
+                </property>
+            </activation>
+            <build>
+                <plugins>
+<!--                    <plugin>
+                        <artifactId>maven-javadoc-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <goals>
+                                    <goal>javadoc</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                        <configuration>
+                            <attach>true</attach>
+                        </configuration>
+                    </plugin> -->
+                </plugins>
+            </build>
+        </profile>
     </profiles>
     <build>
         <pluginManagement>
@@ -337,6 +363,14 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <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>
+                        <tarLongFileMode>gnu</tarLongFileMode>
+                    </configuration>
                 </plugin>
             </plugins>
         </pluginManagement>
@@ -350,6 +384,10 @@
                 </configuration>
             </plugin>
             <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-assembly-plugin</artifactId>
+            </plugin>
+            <plugin>
                 <artifactId>maven-source-plugin</artifactId>
                 <executions>
                     <execution>
@@ -530,7 +568,6 @@
         <module>modules/axiom-dom</module>
         <module>modules/axiom-c14n</module>
         <module>modules/axiom-tests</module>
-        <module>modules/distribution</module>
     </modules>
     <properties>
         <axiom.version>${pom.version}</axiom.version>