Remove coverage phase as there's no travis anymore

This commit is contained in:
Janne Valkealahti
2021-12-18 09:40:06 +00:00
parent fd10bc2670
commit 3b06a9aef7

33
pom.xml
View File

@@ -202,39 +202,6 @@
</pluginRepository>
</pluginRepositories>
</profile>
<profile>
<id>coverage</id>
<activation>
<property>
<name>env.TRAVIS</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.9</version>
<executions>
<execution>
<id>agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!-- Don't build samples by default, so they're not published -->
<id>samples</id>