Update pom.xml

This commit is contained in:
Simone Giannecchini 2016-04-19 20:52:35 +02:00
parent baf27a6ed7
commit 8f0efbc5de

30
pom.xml
View File

@ -34,9 +34,9 @@
<packaging>jar</packaging>
<name>GeoServer 2 Manager - REST based</name>
<name>GeoServer Manager - REST based</name>
<description>
GeoServer Manager is a library to interact with GeoServer 2.x.
GeoServer Manager is a library to interact with GeoServer
The scope of this library is to have a simple API, and use as few external
libs as possible.
</description>
@ -173,6 +173,30 @@
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
<!-- ======================================================= -->
<!-- Code Coverage -->
<!-- ======================================================= -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<format>xml</format>
<maxmem>256m</maxmem>
<!-- aggregated reports for multi-module projects -->
<aggregate>true</aggregate>
</configuration>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.0.0</version>
<configuration>
<repoToken>xtDTxQb9ObVls86kvaZWlsX6xAl6B1RVk</repoToken>
</configuration>
</plugin>
</plugins>
<!-- ======================================================== -->
@ -204,8 +228,6 @@
</configuration>
</plugin>
<!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId>
<version>2.2</version> </plugin> -->
</plugins>
</reporting>