93 <groupId>org.openjdk.jmc</groupId>
94 <artifactId>flightrecorder.rules.jdk.test</artifactId>
95 <scope>test</scope>
96 <version>${project.version}</version>
97 </dependency>
98 </dependencies>
99 <build>
100 <plugins>
101 <plugin>
102 <groupId>org.jacoco</groupId>
103 <artifactId>jacoco-maven-plugin</artifactId>
104 <version>0.8.3</version>
105 <executions>
106 <execution>
107 <id>report-aggregate</id>
108 <phase>verify</phase>
109 <goals>
110 <goal>report-aggregate</goal>
111 </goals>
112 <configuration>
113 <outputDirectory>${basedir}/coverage-report</outputDirectory>
114 </configuration>
115 </execution>
116 </executions>
117 </plugin>
118 </plugins>
119 </build>
120 </project>
|
93 <groupId>org.openjdk.jmc</groupId>
94 <artifactId>flightrecorder.rules.jdk.test</artifactId>
95 <scope>test</scope>
96 <version>${project.version}</version>
97 </dependency>
98 </dependencies>
99 <build>
100 <plugins>
101 <plugin>
102 <groupId>org.jacoco</groupId>
103 <artifactId>jacoco-maven-plugin</artifactId>
104 <version>0.8.3</version>
105 <executions>
106 <execution>
107 <id>report-aggregate</id>
108 <phase>verify</phase>
109 <goals>
110 <goal>report-aggregate</goal>
111 </goals>
112 <configuration>
113 <outputDirectory>${basedir}/coverage-report</outputDirectory>
114 </configuration>
115 </execution>
116 </executions>
117 </plugin>
118 </plugins>
119 </build>
120 </project>
|