diff options
author | elmot <elmot@vaadin.com> | 2016-04-27 13:55:20 +0300 |
---|---|---|
committer | elmot <elmot@vaadin.com> | 2016-04-27 14:09:56 +0300 |
commit | 4410535d9accffe4cb3180359010f39d00453039 (patch) | |
tree | 52ab1e948bf8c8fa2542620b7504ca14b4d85d8c /pom.xml | |
parent | 882fc8c78680eedec3a1802cc309339662a4281d (diff) | |
download | vaadin-framework-4410535d9accffe4cb3180359010f39d00453039.tar.gz vaadin-framework-4410535d9accffe4cb3180359010f39d00453039.zip |
Move checkstyles plugin to actual modules
Change-Id: I2d87a1aeba8ffc8cc15909c32a0c9d10b3ada9a7
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 42 |
1 files changed, 16 insertions, 26 deletions
@@ -174,6 +174,22 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.17</version> + <dependencies> + <!-- Needed because of a JavadocMethodCheck bug in 6.11 --> + <dependency> + <groupId>com.puppycrawl.tools</groupId> + <artifactId>checkstyle</artifactId> + <version>6.17</version> + </dependency> + </dependencies> + <configuration> + <configLocation>../checkstyle/vaadin-checkstyle.xml</configLocation> + <headerLocation>../checkstyle/header</headerLocation> + <encoding>UTF-8</encoding> + <consoleOutput>false</consoleOutput> + <failsOnError>false</failsOnError> + <linkXRef>false</linkXRef> + </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> @@ -215,32 +231,6 @@ <plugins> <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-checkstyle-plugin</artifactId> - <dependencies> - <dependency> - <groupId>com.vaadin</groupId> - <artifactId>vaadin-buildhelpers</artifactId> - <version>${project.version}</version> - </dependency> - <!-- Needed because of a JavadocMethodCheck bug in 6.11 --> - <dependency> - <groupId>com.puppycrawl.tools</groupId> - <artifactId>checkstyle</artifactId> - <version>6.17</version> - </dependency> - </dependencies> - <configuration> - <configLocation>checkstyle/vaadin-checkstyle.xml</configLocation> - <headerLocation>checkstyle/header</headerLocation> - <encoding>UTF-8</encoding> - <consoleOutput>false</consoleOutput> - <failsOnError>false</failsOnError> - <linkXRef>false</linkXRef> - </configuration> - </plugin> - - <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>animal-sniffer-maven-plugin</artifactId> <executions> |