Add pmd-tile
This commit is contained in:
parent
44b22f114d
commit
f2fe36bcf4
4 changed files with 60 additions and 0 deletions
|
@ -22,6 +22,7 @@
|
|||
<tile>net.kemitix.tiles:compiler-tile:${kemitix-tiles.version}</tile>
|
||||
<tile>net.kemitix.tiles:checkstyle-tile:${kemitix-tiles.version}</tile>
|
||||
<tile>net.kemitix.tiles:huntbugs-tile:${kemitix-tiles.version}</tile>
|
||||
<tile>net.kemitix.tiles:pmd-tile:${kemitix-tiles.version}</tile>
|
||||
<tile>net.kemitix.tiles:digraph-tile:${kemitix-tiles.version}</tile>
|
||||
<tile>net.kemitix.tiles:testing-tile:${kemitix-tiles.version}</tile>
|
||||
<tile>net.kemitix.tiles:coverage-tile:${kemitix-tiles.version}</tile>
|
||||
|
|
16
pmd/pom.xml
Normal file
16
pmd/pom.xml
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<parent>
|
||||
<artifactId>tiles-parent</artifactId>
|
||||
<groupId>net.kemitix.tiles</groupId>
|
||||
<version>0.1.0-SNAPSHOT</version>
|
||||
<relativePath>../tiles-parent/pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>pmd-tile</artifactId>
|
||||
<packaging>tile</packaging>
|
||||
|
||||
</project>
|
42
pmd/tile.xml
Normal file
42
pmd/tile.xml
Normal file
|
@ -0,0 +1,42 @@
|
|||
<project>
|
||||
<properties>
|
||||
<maven-pmd-plugin.version>3.8</maven-pmd-plugin.version>
|
||||
</properties>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<version>${maven-pmd-plugin.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>pmd</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>pmd</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>cpd</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>cpd</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin><!-- maven-pmd-plugin -->
|
||||
</plugins>
|
||||
</build>
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<version>${maven-pmd-plugin.version}</version>
|
||||
<configuration>
|
||||
<linkXRef>true</linkXRef>
|
||||
</configuration>
|
||||
</plugin><!-- maven-pmd-plugin -->
|
||||
</plugins>
|
||||
</reporting>
|
||||
</project>
|
1
pom.xml
1
pom.xml
|
@ -22,6 +22,7 @@
|
|||
<module>maven-plugins</module>
|
||||
<module>pitest</module>
|
||||
<module>huntbugs</module>
|
||||
<module>pmd</module>
|
||||
</modules>
|
||||
|
||||
</project>
|
||||
|
|
Loading…
Reference in a new issue