Skip to content

Commit b26d5db

Browse files
committed
Updated POM to ignore Jacoco lifecycle issue
1 parent c8424cd commit b26d5db

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

pom.xml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -568,6 +568,35 @@
568568
<artifactId>jacoco-maven-plugin</artifactId>
569569
<version>0.7.2.201409121644</version>
570570
</plugin>
571+
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
572+
<plugin>
573+
<groupId>org.eclipse.m2e</groupId>
574+
<artifactId>lifecycle-mapping</artifactId>
575+
<version>1.0.0</version>
576+
<configuration>
577+
<lifecycleMappingMetadata>
578+
<pluginExecutions>
579+
<pluginExecution>
580+
<pluginExecutionFilter>
581+
<groupId>org.jacoco</groupId>
582+
<artifactId>
583+
jacoco-maven-plugin
584+
</artifactId>
585+
<versionRange>
586+
[0.7.2.201409121644,)
587+
</versionRange>
588+
<goals>
589+
<goal>prepare-agent</goal>
590+
</goals>
591+
</pluginExecutionFilter>
592+
<action>
593+
<ignore></ignore>
594+
</action>
595+
</pluginExecution>
596+
</pluginExecutions>
597+
</lifecycleMappingMetadata>
598+
</configuration>
599+
</plugin>
571600
</plugins>
572601
</pluginManagement>
573602
<plugins>

0 commit comments

Comments
 (0)