2022-04-18 04:22:11 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2024-01-02 16:11:38 +08:00
|
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2022-04-18 04:22:11 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.jenkins-ci.main</groupId>
|
|
|
|
<artifactId>jenkins-parent</artifactId>
|
2025-06-17 21:07:42 +08:00
|
|
|
<version>2.515</version>
|
2022-04-18 04:22:11 +08:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>jenkins-coverage</artifactId>
|
2022-04-21 13:44:55 +08:00
|
|
|
<packaging>pom</packaging>
|
2022-04-18 04:22:11 +08:00
|
|
|
|
|
|
|
<name>Jenkins coverage</name>
|
|
|
|
<description>Compute aggregated test code coverage</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>cli</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>jenkins-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>jenkins-test</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<!-- Version specified in grandparent POM -->
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-04-21 13:44:55 +08:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<!-- Version specified in grandparent POM -->
|
|
|
|
<configuration>
|
|
|
|
<skipIfEmpty>true</skipIfEmpty>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-04-18 04:22:11 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>enable-jacoco</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<!-- Version specified in parent POM -->
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>report-aggregate</id>
|
|
|
|
<goals>
|
|
|
|
<goal>report-aggregate</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>verify</phase>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
</project>
|