Skip to content

Commit

Permalink
test coverage added
Browse files Browse the repository at this point in the history
  • Loading branch information
jh3nd3rs0n committed Oct 5, 2023
1 parent 0897aeb commit 564836a
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 0 deletions.
78 changes: 78 additions & 0 deletions jargyle-report-aggregate/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.jh3nd3rs0n</groupId>
<artifactId>jargyle</artifactId>
<version>5.0.0-SNAPSHOT</version>
</parent>
<artifactId>jargyle-report-aggregate</artifactId>
<packaging>pom</packaging>
<name>jargyle-report-aggregate</name>
<dependencies>
<dependency>
<groupId>com.github.jh3nd3rs0n</groupId>
<artifactId>echo</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.github.jh3nd3rs0n</groupId>
<artifactId>jargyle-cli</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.github.jh3nd3rs0n</groupId>
<artifactId>jargyle-cli-test</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.github.jh3nd3rs0n</groupId>
<artifactId>jargyle-client</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.github.jh3nd3rs0n</groupId>
<artifactId>jargyle-common</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.github.jh3nd3rs0n</groupId>
<artifactId>jargyle-internal</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.github.jh3nd3rs0n</groupId>
<artifactId>jargyle-server</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.github.jh3nd3rs0n</groupId>
<artifactId>jargyle-server-test</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.github.jh3nd3rs0n</groupId>
<artifactId>jargyle-transport</artifactId>
<version>${project.parent.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.7</version>
<executions>
<execution>
<id>report-aggregate</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
4 changes: 4 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
echo,jargyle-cli,jargyle-cli-test,jargyle-internal,jargyle-server-test,test-help</maven.javadoc.skippedModules>
<sonar.organization>jh3nd3rs0n</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.coverage.jacoco.xmlReportPaths>
${project.basedir}/report-aggregate/target/site/jacoco-aggregate/jacoco.xml
</sonar.coverage.jacoco.xmlReportPaths>
</properties>
<dependencies>
<dependency>
Expand Down Expand Up @@ -138,6 +141,7 @@
<module>echo</module>
<module>jargyle-cli</module>
<module>jargyle-cli-test</module>
<module>jargyle-report-aggregate</module>
<module>jargyle-distribution</module>
</modules>
</project>

0 comments on commit 564836a

Please sign in to comment.