|
@@ -111,6 +111,7 @@
|
|
|
<jacoco.version>0.8.4</jacoco.version>
|
|
|
<jcip.version>1.0</jcip.version>
|
|
|
<maven.deploy.skip>false</maven.deploy.skip>
|
|
|
+ <cobertura-maven-plugin.version>2.7</cobertura-maven-plugin.version>
|
|
|
</properties>
|
|
|
|
|
|
<dependencyManagement>
|
|
@@ -602,7 +603,7 @@
|
|
|
<source>${java.version}</source>
|
|
|
<target>${java.version}</target>
|
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
|
- <skip>true</skip><!--not skip compile test classes-->
|
|
|
+ <skip>false</skip><!--not skip compile test classes-->
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
@@ -611,7 +612,7 @@
|
|
|
<version>${maven-surefire-plugin.version}</version>
|
|
|
<configuration>
|
|
|
<includes>
|
|
|
- <include>**/*Test*.java</include><!--run test classes-->
|
|
|
+ <include>**/*CollectionUtilsTest.java</include><!--run test classes-->
|
|
|
</includes>
|
|
|
<!-- <skip>true</skip> -->
|
|
|
</configuration>
|
|
@@ -714,6 +715,7 @@
|
|
|
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
|
|
|
</sourceDirectories>
|
|
|
<excludes>**\/generated-sources\/</excludes>
|
|
|
+ <skip>true</skip>
|
|
|
</configuration>
|
|
|
<executions>
|
|
|
<execution>
|
|
@@ -724,6 +726,27 @@
|
|
|
</execution>
|
|
|
</executions>
|
|
|
</plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.codehaus.mojo</groupId>
|
|
|
+ <artifactId>cobertura-maven-plugin</artifactId>
|
|
|
+ <version>${cobertura-maven-plugin.version}</version>
|
|
|
+ <configuration>
|
|
|
+ <check>
|
|
|
+ </check>
|
|
|
+ <aggregate>true</aggregate>
|
|
|
+ <encoding>${project.build.sourceEncoding}</encoding>
|
|
|
+ <quiet>true</quiet>
|
|
|
+ <format>xml</format>
|
|
|
+ <instrumentation>
|
|
|
+ <ignoreTrivial>true</ignoreTrivial>
|
|
|
+ <ignoreMethodAnnotations>
|
|
|
+ <ignoreMethodAnnotation>lombok.Generated</ignoreMethodAnnotation>
|
|
|
+ </ignoreMethodAnnotations>
|
|
|
+ <excludes>
|
|
|
+ </excludes>
|
|
|
+ </instrumentation>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
</plugins>
|
|
|
|
|
|
</build>
|