|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | + |
| 3 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + |
| 7 | + <parent> |
| 8 | + <groupId>it.scoverage-maven-plugin</groupId> |
| 9 | + <artifactId>integration_tests_parent</artifactId> |
| 10 | + <version>1.0-SNAPSHOT</version> |
| 11 | + <relativePath>../integration_tests_parent/pom.xml</relativePath> |
| 12 | + </parent> |
| 13 | + |
| 14 | + <artifactId>test_report_for_some_submodules</artifactId> |
| 15 | + <version>1.0-SNAPSHOT</version> |
| 16 | + <packaging>pom</packaging> |
| 17 | + <name>Test Scoverage report works for specified submodules</name> |
| 18 | + <description>Test Scoverage report works for specified submodules</description> |
| 19 | + |
| 20 | + <properties> |
| 21 | + <scala.compat.version>2.13</scala.compat.version> |
| 22 | + <scala.minor.version>12</scala.minor.version> |
| 23 | + </properties> |
| 24 | + |
| 25 | + <modules> |
| 26 | + <module>module01</module> |
| 27 | + <module>module02</module> |
| 28 | + </modules> |
| 29 | + |
| 30 | + <build> |
| 31 | + <plugins> |
| 32 | + <plugin> |
| 33 | + <groupId>org.apache.maven.plugins</groupId> |
| 34 | + <artifactId>maven-compiler-plugin</artifactId> |
| 35 | + </plugin> |
| 36 | + <plugin> |
| 37 | + <groupId>net.alchim31.maven</groupId> |
| 38 | + <artifactId>scala-maven-plugin</artifactId> |
| 39 | + </plugin> |
| 40 | + <plugin> |
| 41 | + <groupId>org.apache.maven.plugins</groupId> |
| 42 | + <artifactId>maven-surefire-plugin</artifactId> |
| 43 | + </plugin> |
| 44 | + <plugin> |
| 45 | + <groupId>@project.groupId@</groupId> |
| 46 | + <artifactId>@project.artifactId@</artifactId> |
| 47 | + <configuration> |
| 48 | + <aggregate>true</aggregate> <!-- for aggregated report --> |
| 49 | + </configuration> |
| 50 | + </plugin> |
| 51 | + </plugins> |
| 52 | + </build> |
| 53 | + |
| 54 | + <reporting> |
| 55 | + <plugins> |
| 56 | + <plugin> |
| 57 | + <groupId>@project.groupId@</groupId> |
| 58 | + <artifactId>@project.artifactId@</artifactId> |
| 59 | + <configuration> |
| 60 | + <aggregate>true</aggregate> <!-- for aggregated report --> |
| 61 | + </configuration> |
| 62 | + </plugin> |
| 63 | + </plugins> |
| 64 | + </reporting> |
| 65 | +</project> |
0 commit comments