Skip to content

Commit

Permalink
Merge pull request #582 from bounswe/lab-8/pr
Browse files Browse the repository at this point in the history
  • Loading branch information
mmtftr authored Dec 3, 2024
2 parents 61fdbbf + 39c5727 commit 7f7d43e
Show file tree
Hide file tree
Showing 3 changed files with 1,895 additions and 0 deletions.
26 changes: 26 additions & 0 deletions backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,32 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<!-- JaCoCo Plugin for Coverage -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.10</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Surefire Plugin for Test Execution -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
</plugin>
</plugins>
</build>

Expand Down
Loading

0 comments on commit 7f7d43e

Please sign in to comment.