Add huntbugs-tile
This commit is contained in:
parent
e78b18cfc1
commit
44b22f114d
4 changed files with 40 additions and 0 deletions
|
@ -21,6 +21,7 @@
|
|||
<tile>net.kemitix.tiles:enforcer-tile:${kemitix-tiles.version}</tile>
|
||||
<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: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
huntbugs/pom.xml
Normal file
16
huntbugs/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>huntbugs-tile</artifactId>
|
||||
<packaging>tile</packaging>
|
||||
|
||||
</project>
|
22
huntbugs/tile.xml
Normal file
22
huntbugs/tile.xml
Normal file
|
@ -0,0 +1,22 @@
|
|||
<project>
|
||||
<properties>
|
||||
<huntbugs.version>0.0.11</huntbugs.version>
|
||||
</properties>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>one.util</groupId>
|
||||
<artifactId>huntbugs-maven-plugin</artifactId>
|
||||
<version>${huntbugs.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>huntbugs</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin><!-- huntbugs-maven-plugin -->
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
1
pom.xml
1
pom.xml
|
@ -21,6 +21,7 @@
|
|||
<module>testing</module>
|
||||
<module>maven-plugins</module>
|
||||
<module>pitest</module>
|
||||
<module>huntbugs</module>
|
||||
</modules>
|
||||
|
||||
</project>
|
||||
|
|
Loading…
Reference in a new issue