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

[Misc] Don't fail clover instrumentation

parent cc7fd41d
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,6 @@
<artifactId>xwiki-platform-observation-remote</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>org.xwiki.commons</groupId>
......@@ -93,7 +92,6 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
......@@ -113,4 +111,25 @@
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>clover</id>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.openclover</groupId>
<artifactId>clover-maven-plugin</artifactId>
<configuration>
<!-- TODO Remove when https://github.com/openclover/clover/issues/265 is fixed -->
<excludes>
<exclude>**/AbstractAsynchronousEventStore.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>
</project>
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