Skip to content

Commit

Permalink
Add submodules to aggregate report
Browse files Browse the repository at this point in the history
  • Loading branch information
tsande16 committed Jan 7, 2025
1 parent c1e5ec5 commit 38d62d5
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 0 deletions.
15 changes: 15 additions & 0 deletions jacoco-aggregate-report/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,21 @@
<artifactId>pass-core-object-service</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.pass</groupId>
<artifactId>pass-core-policy-service</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.pass</groupId>
<artifactId>pass-core-user-service</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.pass</groupId>
<artifactId>pass-core-usertoken</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

<build>
Expand Down
18 changes: 18 additions & 0 deletions pass-core-policy-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,22 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>
19 changes: 19 additions & 0 deletions pass-core-user-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,23 @@
<version>${jakarta.json.version}</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>
19 changes: 19 additions & 0 deletions pass-core-usertoken/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,23 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 38d62d5

Please sign in to comment.