Skip to content
Snippets Groups Projects
Commit 1f014337 authored by Vincent Massol's avatar Vincent Massol
Browse files

[Misc] Fix the jacoco error in the top level POM so that we don't have to copy...

[Misc] Fix the jacoco error in the top level POM so that we don't have to copy the configuration in lots of modules and so that it can be fixed in one place, when it's fixed upstream.
parent bba6cd9a
No related branches found
No related tags found
No related merge requests found
......@@ -102,18 +102,6 @@
</excludes>
</configuration>
</plugin>
<!-- Don't run Jacoco on com/steadystate/css/parser/SACParserCSS21TokenManager since it generates an error,
see http://stackoverflow.com/questions/14559117/how-do-i-disable-jacoco-agent-after-jacocoreport
TODO: remove when https://sourceforge.net/p/cssparser/bugs/53/ is fixed -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>**com.steadystate.css.parser.SACParserCSS21TokenManager</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>
......@@ -161,18 +161,6 @@
</excludes>
</configuration>
</plugin>
<!-- Don't run Jacoco on com/steadystate/css/parser/SACParserCSS21TokenManager since it generates an error,
see http://stackoverflow.com/questions/14559117/how-do-i-disable-jacoco-agent-after-jacocoreport
TODO: remove when https://sourceforge.net/p/cssparser/bugs/53/ is fixed -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>**com.steadystate.css.parser.SACParserCSS21TokenManager</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>
......@@ -56,20 +56,4 @@
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Don't run Jacoco on com/steadystate/css/parser/SACParserCSS21TokenManager since it generates an error,
see http://stackoverflow.com/questions/14559117/how-do-i-disable-jacoco-agent-after-jacocoreport
TODO: remove when https://sourceforge.net/p/cssparser/bugs/53/ is fixed -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>**com.steadystate.css.parser.SACParserCSS21TokenManager</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment