You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2006/10/16 17:55:56 UTC

svn commit: r464527 - in /incubator/cxf/trunk: distribution/pom.xml pom.xml

Author: dkulp
Date: Mon Oct 16 08:55:55 2006
New Revision: 464527

URL: http://svn.apache.org/viewvc?view=rev&rev=464527
Log:
Add a "-Peverything" profile will include the distribution module as well.
Make the "assembly" in distribution not fork a new lifecycle.


Modified:
    incubator/cxf/trunk/distribution/pom.xml
    incubator/cxf/trunk/pom.xml

Modified: incubator/cxf/trunk/distribution/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/pom.xml?view=diff&rev=464527&r1=464526&r2=464527
==============================================================================
--- incubator/cxf/trunk/distribution/pom.xml (original)
+++ incubator/cxf/trunk/distribution/pom.xml Mon Oct 16 08:55:55 2006
@@ -247,7 +247,7 @@
                         <id>distribution-package</id>
                         <phase>package</phase>
                         <goals>
-                            <goal>assembly</goal>
+                            <goal>single</goal>
                         </goals>
                         <configuration>
                             <archive>

Modified: incubator/cxf/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/pom.xml?view=diff&rev=464527&r1=464526&r2=464527
==============================================================================
--- incubator/cxf/trunk/pom.xml (original)
+++ incubator/cxf/trunk/pom.xml Mon Oct 16 08:55:55 2006
@@ -659,6 +659,35 @@
                 </plugins>
             </build>
         </profile>
+        <profile>
+            <!-- default profile enables checkstyle and Xlint stuff -->
+            <id>everything</id>
+            <modules>
+                <module>distribution</module>
+            </modules>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-checkstyle-plugin</artifactId>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-compiler-plugin</artifactId>
+                        <configuration>
+                            <source>1.5</source>
+                            <target>1.5</target>
+                            <showDeprecation>true</showDeprecation>
+                            <compilerArgument>${compile.flags}</compilerArgument>
+                        </configuration>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-pmd-plugin</artifactId>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
 
 
         <profile>