-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
106 lines (92 loc) · 4.28 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>parent-pom</artifactId>
<groupId>com.randomnoun.build</groupId>
<version>1.30</version>
</parent>
<groupId>com.randomnoun.common</groupId>
<artifactId>jacoco-combine-report</artifactId>
<packaging>jar</packaging>
<version>0.0.6-SNAPSHOT</version>
<name>jacoco-combine-report</name>
<description>A Jacoco report which includes side-by-side comparisons of multiple execution runs</description>
<url>https://randomnoun.github.io/jacoco-combine-report/</url>
<inceptionYear>2024-07-03</inceptionYear>
<properties>
<jdk.version>17</jdk.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.randomnoun.common</groupId>
<artifactId>log4j-one</artifactId>
<version>1.0.0</version>
<scope>test</scope><!-- most downstream projects will provide their own logj4-compatible logging framework -->
</dependency>
<!-- jacoco exec files -->
<dependency>
<groupId>org.jacoco</groupId>
<artifactId>org.jacoco.core</artifactId>
<version>0.8.11</version>
</dependency>
<dependency>
<groupId>org.jacoco</groupId>
<artifactId>org.jacoco.report</artifactId> <!-- includes core -->
<version>0.8.11</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<!--
this configuration is used during the javadoc:jar goal during the release
configuration for the reports is in the <reporting> section
-->
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
<failOnError>false</failOnError>
<sourcepath>src/main/java</sourcepath>
<javadocDirectory>${project.basedir}/src/main/javadoc</javadocDirectory>
<docfilessubdirs>true</docfilessubdirs>
<author>true</author>
<linksource>true</linksource>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<!-- these are on github now. except for the bits on gitlab. -->
<scm>
<connection>scm:git:http://gitlab.dev.randomnoun/randomnoun/jacoco-combine-report.git</connection>
<developerConnection>scm:git:http://gitlab.dev.randomnoun/randomnoun/jacoco-combine-report.git</developerConnection>
<url>http://gitlab.dev.randomnoun/randomnoun/jacoco-combine-report</url>
<tag>jacoco-combine-report-0.0.2</tag>
</scm>
<distributionManagement>
<site>
<id>gh-pages</id>
<name>jacoco-combine-report Website</name>
<url>git:http://gitlab.dev.randomnoun/randomnoun/jacoco-combine-report.git?gh-pages#</url>
</site>
</distributionManagement>
</project>