Remove checkstyle plugin 99/699/1
authorRobert Varga <rovarga@cisco.com>
Thu, 25 Jul 2013 09:28:01 +0000 (11:28 +0200)
committerRobert Varga <rovarga@cisco.com>
Thu, 25 Jul 2013 09:28:01 +0000 (11:28 +0200)
It is no longer required, as it's functionality is covered by use of
Sonar.

Change-Id: I380df1b35cc4ea93b81e12a4b74a369166954e4a
Signed-off-by: Robert Varga <rovarga@cisco.com>
12 files changed:
README
bgp/concepts/pom.xml
bgp/linkstate/pom.xml
bgp/parser-api/pom.xml
bgp/rib-api/pom.xml
bgp/rib-impl/pom.xml
build/checkstyle/checkstyle-checker-api.xml [deleted file]
build/checkstyle/checkstyle-checker.xml [deleted file]
concepts/pom.xml
framework/pom.xml
pcep/api/pom.xml
pom.xml

diff --git a/README b/README
index 7d816deff6da5f26128e14ee017c935b5a9528a4..0e63d02de2cf54cf12a2bb141b05480250c46c8a 100644 (file)
--- a/README
+++ b/README
@@ -1,9 +1,6 @@
 DIRECTORY ORGANIZATION
 ======================
 
-build:
-       configuration of build-time components, such as checkstyle plugin.
-
 src/site:
        maven site plugin templates
 
index e496dceaa2e3024d6aad079898b00b38f08b0bff..62c3e8e75623e85e215955f87af4f08661841266 100644 (file)
                                        </instructions>
                                </configuration>
                        </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-checkstyle-plugin</artifactId>
-                               <version>${checkstyle.version}</version>
-                               <configuration>
-                                       <configLocation>build/checkstyle/checkstyle-checker-api.xml</configLocation>
-                                       <outputDirectory>${basedir}/target/checkstyle/report</outputDirectory>
-                               </configuration>
-                       </plugin>
                </plugins>
        </build>
 
index 48fa0a13fcdb2e7d665cc87ddf21ced9fea23774..8643bd865a931c15f17c1a9494a8792849aa423c 100644 (file)
                                        </instructions>
                                </configuration>
                        </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-checkstyle-plugin</artifactId>
-                               <version>${checkstyle.version}</version>
-                               <configuration>
-                                       <configLocation>build/checkstyle/checkstyle-checker-api.xml</configLocation>
-                                       <outputDirectory>${basedir}/target/checkstyle/report</outputDirectory>
-                               </configuration>
-                       </plugin>
                </plugins>
        </build>
 
index 9b9f769c0433d35195bdee3ce88b98a8737023a2..3994352bb958ce905e4306bef6f9021c94029751 100644 (file)
                                        </instructions>
                                </configuration>
                        </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-checkstyle-plugin</artifactId>
-                               <version>${checkstyle.version}</version>
-                               <configuration>
-                                       <configLocation>build/checkstyle/checkstyle-checker-api.xml</configLocation>
-                                       <outputDirectory>${basedir}/target/checkstyle/report</outputDirectory>
-                               </configuration>
-                       </plugin>
                </plugins>
        </build>
 
index edf30408fda68a318128c8bd508f6d04affdf64a..c4d7d65fcd093a2cd6d1df50da96941d840bfd36 100644 (file)
                                        </instructions>
                                </configuration>
                        </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-checkstyle-plugin</artifactId>
-                               <version>${checkstyle.version}</version>
-                               <configuration>
-                                       <configLocation>build/checkstyle/checkstyle-checker-api.xml</configLocation>
-                                       <outputDirectory>${basedir}/target/checkstyle/report</outputDirectory>
-                               </configuration>
-                       </plugin>
                </plugins>
        </build>
 
index 885fe7ff86451e34c98c438d890c5eed2ee563eb..9f286ddde64a5ba4319bc72d4ca51ba84dc0ac55 100644 (file)
                                        </instructions>
                                </configuration>
                        </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-checkstyle-plugin</artifactId>
-                               <version>${checkstyle.version}</version>
-                               <configuration>
-                                       <configLocation>build/checkstyle/checkstyle-checker-api.xml</configLocation>
-                                       <outputDirectory>${basedir}/target/checkstyle/report</outputDirectory>
-                               </configuration>
-                       </plugin>
                </plugins>
        </build>
 
diff --git a/build/checkstyle/checkstyle-checker-api.xml b/build/checkstyle/checkstyle-checker-api.xml
deleted file mode 100644 (file)
index d047405..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE module PUBLIC
-  "-//Puppy Crawl//DTD Check Configuration 1.2//EN"
-  "http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
-
-<module name="Checker">
-       <module name="TreeWalker">
-               <module name="JavadocType">
-                       <property name="scope" value="public" />
-                       <property name="allowUnknownTags" value="true" />
-               </module> 
-               <module name="JavadocMethod">
-                       <property name="scope" value="public" />
-                       <property name="allowMissingReturnTag" value="false" />
-                       <property name="allowMissingParamTags" value="false" /> 
-                       <property name="allowMissingThrowsTags" value="false" />        
-                       <property name="allowUndeclaredRTE" value="true"/>
-               </module>
-       </module>
-</module>
\ No newline at end of file
diff --git a/build/checkstyle/checkstyle-checker.xml b/build/checkstyle/checkstyle-checker.xml
deleted file mode 100644 (file)
index ea552e5..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE module PUBLIC
-  "-//Puppy Crawl//DTD Check Configuration 1.2//EN"
-  "http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
-
-<module name="Checker">
-       <module name="TreeWalker">
-               <module name="JavadocType">
-                       <property name="scope" value="public" />
-                       <property name="allowUnknownTags" value="true" />
-               </module> 
-       </module>
-</module>
\ No newline at end of file
index d9b9622baed3b8e378b94051050fed828d22ab1a..360bb8177be74f4ad9823dff7cc02f8d568a8117 100644 (file)
                                        </instructions>
                                </configuration>
                        </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-checkstyle-plugin</artifactId>
-                               <version>${checkstyle.version}</version>
-                               <configuration>
-                                       <configLocation>build/checkstyle/checkstyle-checker-api.xml</configLocation>
-                                       <outputDirectory>${basedir}/target/checkstyle/report</outputDirectory>
-                               </configuration>
-                       </plugin>
                </plugins>
        </build>
 
index 31f45e0c018c1b74f769ec80342d41d285d2e8ce..9255462f1bfe7af351da51314b98eaf7b998f58f 100644 (file)
                                        </instructions>
                                </configuration>
                        </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-checkstyle-plugin</artifactId>
-                               <version>${checkstyle.version}</version>
-                               <configuration>
-                                       <configLocation>build/checkstyle/checkstyle-checker-api.xml</configLocation>
-                                       <outputDirectory>${basedir}/target/checkstyle/report</outputDirectory>
-                               </configuration>
-                       </plugin>
                        <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-jar-plugin</artifactId>
index 4e2ba7233a0b0644ecb5a5f4c631c834a4903896..1d3fb700c85e601dcf16365a4796205f186b66db 100644 (file)
                                        </instructions>
                                </configuration>
                        </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-checkstyle-plugin</artifactId>
-                               <version>${checkstyle.version}</version>
-                               <configuration>
-                                       <configLocation>build/checkstyle/checkstyle-checker-api.xml</configLocation>
-                                       <outputDirectory>${basedir}/target/checkstyle/report</outputDirectory>
-                               </configuration>
-                       </plugin>
                </plugins>
        </build>
 
diff --git a/pom.xml b/pom.xml
index a77bb53a9b97568e3c35b4c463c2ed5eaec7cce2..c9256e41127e9b7f05e0b337d55c26f2482e124b 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -14,7 +14,6 @@
                <java.version.source>1.7</java.version.source>
                <java.version.target>1.7</java.version.target>
                <commons.io.version>2.4</commons.io.version>
-               <checkstyle.version>2.9.1</checkstyle.version>
                <pmd.version>2.7.1</pmd.version>
                <dependency.version>2.8</dependency.version>
                <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
                                <artifactId>maven-javadoc-plugin</artifactId>
                                <version>2.8.1</version>
                        </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-checkstyle-plugin</artifactId>
-                               <version>2.9.1</version>
-                       </plugin>
                        <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-pmd-plugin</artifactId>
                                        <testTarget>${java.version.target}</testTarget>
                                </configuration>
                        </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-checkstyle-plugin</artifactId>
-                               <version>2.9.1</version>
-                               <configuration>
-                                       <configLocation>build/checkstyle/checkstyle-checker.xml</configLocation>
-                                       <outputDirectory>${basedir}/target/checkstyle/report</outputDirectory>
-                               </configuration>
-                       </plugin>
                        <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-surefire-plugin</artifactId>