|
@@ -184,6 +184,37 @@
|
|
|
<repoToken>cWL9JBVesOJatx690o81AkOtujERogRXv</repoToken>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
+
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.codehaus.mojo</groupId>
|
|
|
+ <artifactId>cobertura-maven-plugin</artifactId>
|
|
|
+ <version>2.6</version>
|
|
|
+ <configuration>
|
|
|
+ <formats>
|
|
|
+ <format>xml</format>
|
|
|
+ <format>html</format>
|
|
|
+ </formats>
|
|
|
+ <aggregate>true</aggregate>
|
|
|
+ <instrumentation>
|
|
|
+ <excludes>
|
|
|
+ <exclude>**/*Test.class</exclude>
|
|
|
+ <exclude>**/*Tests.class</exclude>
|
|
|
+ <exclude>**/*Entity.class</exclude>
|
|
|
+ <exclude>**/*Configuration.class</exclude>
|
|
|
+ </excludes>
|
|
|
+ </instrumentation>
|
|
|
+ </configuration>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <phase>package</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>cobertura</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-scm-plugin</artifactId>
|