-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjunit
More file actions
40 lines (39 loc) · 1.32 KB
/
junit
File metadata and controls
40 lines (39 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<build>
<plugins>
<!-- Clover Plugin -->
<plugin>
<groupId>com.atlassian.maven.plugins</groupId>
<artifactId>maven-clover2-plugin</artifactId>
<version>4.4.1</version> <!-- Use the latest version available -->
<configuration>
<!-- Additional Clover configuration if needed -->
</configuration>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>instrument</goal>
<goal>clover</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- PMD Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.15.0</version> <!-- Use the latest version available -->
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>pmd</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- Additional PMD configuration if needed -->
</configuration>
</plugin>
</plugins>
</build>