-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
105 lines (93 loc) · 3.7 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
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.basepom</groupId>
<artifactId>basepom-oss</artifactId>
<version>61</version>
</parent>
<groupId>io.github.agebhar1</groupId>
<artifactId>micrometer-certs-expiration-root</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>Micrometer TrustStore (X509) Certificates Expiration Metrics</description>
<inceptionYear>2021</inceptionYear>
<url>https://github.com/agebhar1/micrometer-certs-expiration</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>agebhar1</id>
<name>Andreas Gebhardt</name>
<email>[email protected]</email>
<timezone>+1</timezone>
</developer>
</developers>
<scm>
<url>${project.url}</url>
<connection>scm:git:https://github.com/agebhar1/micrometer-certs-expiration</connection>
<developerConnection>scm:git:git://github.com/agebhar1/micrometer-certs-expiration</developerConnection>
</scm>
<modules>
<module>project</module>
<module>samples</module>
</modules>
<properties>
<project.build.targetJdk>8</project.build.targetJdk>
<!-- dependencies -->
<flatten-maven-plugin.version>1.6.0</flatten-maven-plugin.version>
<!-- keep until SpotBugs #2732 is released, > 4.8.2 -->
<dep.spotbugs.version>4.7.3</dep.spotbugs.version>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>${flatten-maven-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<licenseSets>
<licenseSet>
<header>com/mycila/maven/plugin/license/templates/APACHE-2.txt</header>
<includes>
<include>src/main/java/**</include>
<include>src/test/java/**</include>
</includes>
<excludes>
<exclude>**/pom.xml</exclude>
</excludes>
</licenseSet>
</licenseSets>
<properties>
<owner>Andreas Gebhardt</owner>
<email>[email protected]</email>
</properties>
<skipExistingHeaders>true</skipExistingHeaders>
</configuration>
<executions>
<execution>
<id>license-check</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>