plugin: pom.xml: remove redundant configuration
This is all provided by kemitix-parent
This commit is contained in:
parent
8cbee7caa6
commit
6620ee2bec
1 changed files with 0 additions and 85 deletions
|
@ -16,24 +16,11 @@
|
||||||
<description>Checkstyle configuration using the Kemitix Checkstyle Ruleset</description>
|
<description>Checkstyle configuration using the Kemitix Checkstyle Ruleset</description>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<java.version>1.8</java.version>
|
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
||||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
||||||
<maven.version>3.5.0</maven.version>
|
<maven.version>3.5.0</maven.version>
|
||||||
<maven-compiler-plugin.version>3.6.1</maven-compiler-plugin.version>
|
|
||||||
<maven-plugin-plugin.version>3.5</maven-plugin-plugin.version>
|
<maven-plugin-plugin.version>3.5</maven-plugin-plugin.version>
|
||||||
<maven-plugin-annotations.version>3.5</maven-plugin-annotations.version>
|
<maven-plugin-annotations.version>3.5</maven-plugin-annotations.version>
|
||||||
<maven-javadoc-plugin.version>2.10.4</maven-javadoc-plugin.version>
|
|
||||||
<maven-source-plugin.version>3.0.1</maven-source-plugin.version>
|
|
||||||
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
|
|
||||||
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
|
|
||||||
<mojo-executor.version>2.3.0</mojo-executor.version>
|
<mojo-executor.version>2.3.0</mojo-executor.version>
|
||||||
<lombok.version>1.16.16</lombok.version>
|
|
||||||
<map-builder.version>1.0.0</map-builder.version>
|
<map-builder.version>1.0.0</map-builder.version>
|
||||||
<jacoco-maven-plugin.version>0.7.9</jacoco-maven-plugin.version>
|
|
||||||
<jacoco-class-line-covered-ratio>0.50</jacoco-class-line-covered-ratio>
|
|
||||||
<jacoco-class-instruction-covered-ratio>0.80</jacoco-class-instruction-covered-ratio>
|
|
||||||
<jacoco-class-missed-count-maximum>0</jacoco-class-missed-count-maximum>
|
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@ -58,12 +45,6 @@
|
||||||
<artifactId>mojo-executor</artifactId>
|
<artifactId>mojo-executor</artifactId>
|
||||||
<version>${mojo-executor.version}</version>
|
<version>${mojo-executor.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>org.projectlombok</groupId>
|
|
||||||
<artifactId>lombok</artifactId>
|
|
||||||
<version>${lombok.version}</version>
|
|
||||||
<scope>provided</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>me.andrz</groupId>
|
<groupId>me.andrz</groupId>
|
||||||
<artifactId>map-builder</artifactId>
|
<artifactId>map-builder</artifactId>
|
||||||
|
@ -88,72 +69,6 @@
|
||||||
<artifactId>maven-plugin-plugin</artifactId>
|
<artifactId>maven-plugin-plugin</artifactId>
|
||||||
<version>${maven-plugin-plugin.version}</version>
|
<version>${maven-plugin-plugin.version}</version>
|
||||||
</plugin><!-- maven-plugin-plugin -->
|
</plugin><!-- maven-plugin-plugin -->
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
|
||||||
<version>${maven-compiler-plugin.version}</version>
|
|
||||||
<configuration>
|
|
||||||
<compilerArgs>
|
|
||||||
<arg>-Xlint:unchecked</arg>
|
|
||||||
</compilerArgs>
|
|
||||||
<showDeprecation>true</showDeprecation>
|
|
||||||
<showWarnings>true</showWarnings>
|
|
||||||
<source>${java.version}</source>
|
|
||||||
<target>${java.version}</target>
|
|
||||||
</configuration>
|
|
||||||
</plugin><!-- maven-compiler-plugin -->
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.jacoco</groupId>
|
|
||||||
<artifactId>jacoco-maven-plugin</artifactId>
|
|
||||||
<version>${jacoco-maven-plugin.version}</version>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<goals>
|
|
||||||
<goal>prepare-agent</goal>
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
<execution>
|
|
||||||
<id>report</id>
|
|
||||||
<phase>prepare-package</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>report</goal>
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
<execution>
|
|
||||||
<id>default-check</id>
|
|
||||||
<goals>
|
|
||||||
<goal>check</goal>
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
<configuration>
|
|
||||||
<rules>
|
|
||||||
<rule>
|
|
||||||
<element>CLASS</element>
|
|
||||||
<excludes>
|
|
||||||
<exclude>*HelpMojo</exclude>
|
|
||||||
</excludes>
|
|
||||||
<limits>
|
|
||||||
<limit>
|
|
||||||
<counter>LINE</counter>
|
|
||||||
<value>COVEREDRATIO</value>
|
|
||||||
<minimum>${jacoco-class-line-covered-ratio}</minimum>
|
|
||||||
</limit>
|
|
||||||
<limit>
|
|
||||||
<counter>INSTRUCTION</counter>
|
|
||||||
<value>COVEREDRATIO</value>
|
|
||||||
<minimum>${jacoco-class-instruction-covered-ratio}</minimum>
|
|
||||||
</limit>
|
|
||||||
<limit>
|
|
||||||
<counter>CLASS</counter>
|
|
||||||
<value>MISSEDCOUNT</value>
|
|
||||||
<maximum>${jacoco-class-missed-count-maximum}</maximum>
|
|
||||||
</limit>
|
|
||||||
</limits>
|
|
||||||
</rule>
|
|
||||||
</rules>
|
|
||||||
</configuration>
|
|
||||||
</plugin><!-- jacoco-maven-plugin -->
|
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Reference in a new issue