Author: bimargulies
Date: Sat Nov 27 13:02:16 2010
New Revision: 1039670
URL: http://svn.apache.org/viewvc?rev=1039670&view=rev
Log:
Turn PMD back on.
Modified:
webservices/xmlschema/trunk/pom.xml
Modified: webservices/xmlschema/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/xmlschema/trunk/pom.xml?rev=1039670&r1=1039669&r2=1039670&view=diff
==============================================================================
--- webservices/xmlschema/trunk/pom.xml (original)
+++ webservices/xmlschema/trunk/pom.xml Sat Nov 27 13:02:16 2010
@@ -82,6 +82,41 @@
<pluginManagement>
<plugins>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-pmd-plugin</artifactId>
+ <version>2.5</version>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.ws.xmlschema</groupId>
+ <artifactId>xmlschema-eclipse</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+ <configuration>
+ <rulesets>
+ <ruleset>xmlschema-pmd-ruleset.xml</ruleset>
+ </rulesets>
+ <sourceEncoding>UTF-8</sourceEncoding>
+ <targetJdk>1.5</targetJdk>
+ <linkXRef>false</linkXRef>
+ <includeTests>true</includeTests>
+ <verbose>true</verbose>
+ <excludeRoots>
+
<excludeRoot>${basedir}/src/main/generated</excludeRoot>
+ </excludeRoots>
+ </configuration>
+ <executions>
+ <execution>
+ <id>validate</id>
+ <phase>validate</phase>
+ <goals>
+ <goal>check</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.0</version>
<configuration>