| 
									
										
										
										
											2023-08-15 15:59:09 +02:00
										 |  |  | <?xml version="1.0" encoding="UTF-8"?> | 
					
						
							|  |  |  | <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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | 
					
						
							|  |  |  |     <modelVersion>4.0.0</modelVersion> | 
					
						
							|  |  |  |     <groupId>com.baeldung</groupId> | 
					
						
							|  |  |  |     <artifactId>jacoco-coverage-aggregation</artifactId> | 
					
						
							|  |  |  |     <version>1.0</version> | 
					
						
							|  |  |  |     <name>jacoco-coverage-aggregation</name> | 
					
						
							|  |  |  |     <packaging>pom</packaging> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <parent> | 
					
						
							|  |  |  |         <groupId>com.baeldung</groupId> | 
					
						
							|  |  |  |         <artifactId>parent-modules</artifactId> | 
					
						
							|  |  |  |         <version>1.0.0-SNAPSHOT</version> | 
					
						
							|  |  |  |         <relativePath>../../</relativePath> | 
					
						
							|  |  |  |     </parent> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <modules> | 
					
						
							| 
									
										
										
										
											2023-10-16 09:42:13 +02:00
										 |  |  |         <module>jacoco-coverage-services-example</module> | 
					
						
							|  |  |  |         <module>jacoco-coverage-controllers-example</module> | 
					
						
							|  |  |  |         <module>jacoco-coverage-aggregate-report</module> | 
					
						
							| 
									
										
										
										
											2023-08-15 15:59:09 +02:00
										 |  |  |     </modules> | 
					
						
							| 
									
										
										
										
											2023-11-09 16:47:34 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-15 15:59:09 +02:00
										 |  |  |     <build> | 
					
						
							|  |  |  |         <plugins> | 
					
						
							|  |  |  |             <plugin> | 
					
						
							|  |  |  |                 <groupId>org.jacoco</groupId> | 
					
						
							|  |  |  |                 <artifactId>jacoco-maven-plugin</artifactId> | 
					
						
							| 
									
										
										
										
											2023-09-14 12:42:28 +03:00
										 |  |  |                 <version>${jacoco-maven-plugin.version}</version> | 
					
						
							| 
									
										
										
										
											2023-08-15 15:59:09 +02:00
										 |  |  |                 <executions> | 
					
						
							|  |  |  |                     <execution> | 
					
						
							|  |  |  |                         <goals> | 
					
						
							|  |  |  |                             <goal>prepare-agent</goal> | 
					
						
							|  |  |  |                         </goals> | 
					
						
							|  |  |  |                     </execution> | 
					
						
							|  |  |  |                 </executions> | 
					
						
							|  |  |  |             </plugin> | 
					
						
							|  |  |  |         </plugins> | 
					
						
							|  |  |  |     </build> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-14 12:42:28 +03:00
										 |  |  |     <properties> | 
					
						
							|  |  |  |         <jacoco-maven-plugin.version>0.8.8</jacoco-maven-plugin.version> | 
					
						
							|  |  |  |     </properties> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-15 15:59:09 +02:00
										 |  |  | </project> |