You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by jl...@apache.org on 2006/10/31 09:35:47 UTC

svn commit: r469413 - /incubator/cxf/trunk/rt/frontend/jaxws/pom.xml

Author: jliu
Date: Tue Oct 31 00:35:46 2006
New Revision: 469413

URL: http://svn.apache.org/viewvc?view=rev&rev=469413
Log:
Fixed -Pnochecks problem in pom

Modified:
    incubator/cxf/trunk/rt/frontend/jaxws/pom.xml

Modified: incubator/cxf/trunk/rt/frontend/jaxws/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/frontend/jaxws/pom.xml?view=diff&rev=469413&r1=469412&r2=469413
==============================================================================
--- incubator/cxf/trunk/rt/frontend/jaxws/pom.xml (original)
+++ incubator/cxf/trunk/rt/frontend/jaxws/pom.xml Tue Oct 31 00:35:46 2006
@@ -102,19 +102,13 @@
             <artifactId>saaj-api</artifactId>
         </dependency>
     </dependencies>
-
-    <build>
-	<plugins>
+    
+    <build>    
+        <pluginManagement>
+          <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-checkstyle-plugin</artifactId>
-                <dependencies>
-                    <dependency>
-                        <groupId>org.apache.cxf</groupId>
-                        <artifactId>cxf-buildtools</artifactId>
-                        <version>${project.version}</version>
-                    </dependency>
-                </dependencies>
                 <executions>
                     <execution>
                         <id>process-sources</id>
@@ -122,9 +116,6 @@
                         <configuration>
                             <suppressionsLocation>${basedir}/checkstyle-suppressions.xml</suppressionsLocation>
                         </configuration>
-                        <goals>
-                            <goal>checkstyle</goal>
-                        </goals>
                     </execution>
                 </executions>
             </plugin>
@@ -137,8 +128,8 @@
                     </excludes>
                 </configuration>
             </plugin>
-                
-	<!--
+            
+	    <!--
 	    <plugin>
 		<groupId>org.apache.cxf</groupId>
 		<artifactId>cxf-common-xsd</artifactId>
@@ -184,7 +175,9 @@
                 </dependencies>
 	    </plugin>
 	    -->
-	</plugins>
+
+          </plugins>
+        </pluginManagement>
     </build>
 
 </project>