generated from sentrysoftware/oss-maven-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
171 lines (150 loc) · 4.48 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<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>
<groupId>org.sentrysoftware</groupId>
<artifactId>oss-parent</artifactId>
<version>2</version>
</parent>
<groupId>org.sentrysoftware</groupId>
<artifactId>metricshub-community-connectors</artifactId>
<version>1.0.08-SNAPSHOT</version>
<name>MetricsHub Community Connectors</name>
<description>MetricsHub Community Connector Repository</description>
<organization>
<name>Sentry Software</name>
<url>https://sentrysoftware.com</url>
</organization>
<url>https://sentrysoftware.github.io/metricshub-community-connectors</url>
<inceptionYear>2023</inceptionYear>
<licenses>
<license>
<name>agpl-3.0</name>
<url>https://www.gnu.org/licenses/agpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/sentrysoftware/metricshub-community-connectors/issues/</url>
</issueManagement>
<scm>
<connection>scm:git:https://github.com/sentrysoftware/metricshub-community-connectors.git</connection>
<url>https://github.com/sentrysoftware/metricshub-community-connectors</url>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<name>Bertrand Martin (@bertysentry)</name>
<email>[email protected]</email>
<roles>
<role>maintainer</role>
</roles>
</developer>
<developer>
<name>Nassim Boutekedjiret (@NassimBtk)</name>
<email>[email protected]</email>
<roles>
<role>maintainer</role>
</roles>
</developer>
<developer>
<name>Alex Gilbert (@alexdgilbert)</name>
<email>[email protected]</email>
<roles>
<role>maintainer</role>
</roles>
</developer>
</developers>
<properties>
<!-- Java 8 -->
<maven.compiler.release>8</maven.compiler.release>
<!-- Reproducible Build -->
<!-- See https://maven.apache.org/guides/mini/guide-reproducible-builds.html -->
<project.build.outputTimestamp>2024-12-05T13:13:26Z</project.build.outputTimestamp>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.10.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<!-- Tell the maven-source-plugin where to find the sources -->
<sourceDirectory>${basedir}/src/main/connector</sourceDirectory>
<plugins>
<!-- site -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.12.1</version>
<configuration>
<generateReports>true</generateReports>
<generateProjectInfo>true</generateProjectInfo>
<inputEncoding>UTF-8</inputEncoding>
<outputEncoding>UTF-8</outputEncoding>
</configuration>
<dependencies>
<dependency>
<groupId>org.sentrysoftware.maven</groupId>
<artifactId>maven-skin-tools</artifactId>
<version>1.3.00</version>
</dependency>
</dependencies>
<executions>
<!-- package -->
<!-- Create the documentation artifact -->
<execution>
<phase>prepare-package</phase>
<goals>
<goal>site</goal>
<goal>jar</goal>
</goals>
<configuration>
<attach>true</attach>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<!-- pmd -->
<plugin>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<linkXref>true</linkXref>
<sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
<minimumTokens>50</minimumTokens>
<targetJdk>${maven.compiler.release}</targetJdk>
<rulesets>
<ruleset>pmd.xml</ruleset>
</rulesets>
</configuration>
</plugin>
<!-- The MetricsHub Connector Maven Plugin -->
<plugin>
<groupId>org.sentrysoftware.maven</groupId>
<artifactId>metricshub-connector-maven-plugin</artifactId>
<version>1.0.07</version>
</plugin>
</plugins>
</reporting>
</project>