-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
68 lines (62 loc) · 2.46 KB
/
Copy pathpom.xml
File metadata and controls
68 lines (62 loc) · 2.46 KB
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
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.bsayli</groupId>
<artifactId>licensing-aggregator</artifactId>
<version>1.0.6</version>
<packaging>pom</packaging>
<name>licensing (aggregator)</name>
<scm>
<connection>scm:git:https://github.com/bsayli/licensing.git</connection>
<developerConnection>scm:git:git@github.com:bsayli/licensing.git</developerConnection>
<url>https://github.com/bsayli/licensing</url>
<tag>HEAD</tag>
</scm>
<properties>
<jacoco-maven-plugin.version>0.8.14</jacoco-maven-plugin.version>
</properties>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<modules>
<module>licensing-api-contract</module>
<module>license-generator</module>
<module>licensing-service</module>
<module>licensing-service-client</module>
<module>licensing-service-sdk</module>
<module>licensing-service-sdk-cli</module>
</modules>
<profiles>
<profile>
<id>coverage-aggregate</id>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
<executions>
<execution>
<id>report-aggregate</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
<configuration>
<includes>
<include>io/github/bsayli/**</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>