<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.tencent.tsf</groupId>
    <artifactId>femas-parent</artifactId>
    <version>2.0.1</version>
  </parent>
  <groupId>com.tencent.tsf</groupId>
  <artifactId>jacoco-aggregate</artifactId>
  <version>2.0.1</version>
  <packaging>pom</packaging>
  <name>Jacoco Aggregate</name>
  <dependencies>
    <dependency>
      <groupId>com.tencent.tsf</groupId>
      <artifactId>femas-common</artifactId>
    </dependency>
    <dependency>
      <groupId>com.tencent.tsf</groupId>
      <artifactId>femas-config</artifactId>
    </dependency>
    <dependency>
      <groupId>com.tencent.tsf</groupId>
      <artifactId>femas-config-consul</artifactId>
    </dependency>
    <dependency>
      <groupId>com.tencent.tsf</groupId>
      <artifactId>femas-registry</artifactId>
    </dependency>
    <dependency>
      <groupId>com.tencent.tsf</groupId>
      <artifactId>femas-governance-impl</artifactId>
    </dependency>
    <dependency>
      <groupId>com.tencent.tsf</groupId>
      <artifactId>femas-registry-consul</artifactId>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.jacoco</groupId>
        <artifactId>jacoco-maven-plugin</artifactId>
        <version>0.8.5</version>
        <executions>
          <execution>
            <id>report-aggregate</id>
            <phase>test</phase>
            <goals>
              <goal>report-aggregate</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>
