Coveralls should be on Parent Pom

moving the coverall plugin to the parent pom level

Signed-off-by: Doug Morato <dm@corp.io>
This commit is contained in:
Doug Morato
2015-10-24 20:26:17 -04:00
parent 2f8ac1798b
commit 7e2d36ee48
3 changed files with 21 additions and 21 deletions

20
pom.xml
View File

@ -247,6 +247,26 @@
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>${coveralls-maven-plugin.version}</version>
<configuration>
<repoToken></repoToken>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>${cobertura-maven-plugin.version}</version>
<configuration>
<check></check>
<format>xml</format>
<maxmem>256m</maxmem>
<!-- aggregated reports for multi-module projects -->
<aggregate>true</aggregate>
</configuration>
</plugin>
</plugins>
</build>