Skip to content

Commit

Permalink
pom: fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdan Drozdowski committed Sep 18, 2023
1 parent 0cb0c6b commit a1ae248
Showing 1 changed file with 33 additions and 31 deletions.
64 changes: 33 additions & 31 deletions pom.xml
Expand Up @@ -188,35 +188,37 @@ You should have received a copy of the GNU Affero General Public License
</plugins>
</pluginManagement>
</build>
<profile>
<id>coverage</id>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.7</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<goals>
<goal>report</goal>
</goals>
<configuration>
<formats>
<format>XML</format>
</formats>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profiles>
<profile>
<id>coverage</id>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.7</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<goals>
<goal>report</goal>
</goals>
<configuration>
<formats>
<format>XML</format>
</formats>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit a1ae248

Please sign in to comment.