-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpom.xml
More file actions
394 lines (360 loc) · 11.9 KB
/
Copy pathpom.xml
File metadata and controls
394 lines (360 loc) · 11.9 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
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
<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.metricshub</groupId>
<artifactId>oss-parent</artifactId>
<version>5</version>
</parent>
<artifactId>winrm-java</artifactId>
<version>2.2.00-SNAPSHOT</version>
<name>WinRM Java Client</name>
<description>WinRM Java Client</description>
<organization>
<name>MetricsHub</name>
<url>https://metricshub.com</url>
</organization>
<url>https://metricshub.org/winrm-java</url>
<inceptionYear>2023</inceptionYear>
<licenses>
<license>
<name>Apache-2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/metricshub/winrm-java/issues/</url>
</issueManagement>
<scm>
<connection>scm:git:https://github.com/metricshub/winrm-java.git</connection>
<url>https://github.com/metricshub/winrm-java</url>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<name>Bertrand Martin (@bertysentry)</name>
<email>bertrand@sentrysoftware.com</email>
<roles>
<role>maintainer</role>
</roles>
</developer>
<developer>
<name>Nassim BOUTEKEDJIRET (@NassimBtk)</name>
<email>nassim@sentrysoftware.com</email>
<roles>
<role>maintainer</role>
</roles>
</developer>
<developer>
<name>Safae Ajib (@SafaeAJ)</name>
<email>safae@sentrysoftware.com</email>
<roles>
<role>maintainer</role>
</roles>
</developer>
<developer>
<name>Elyes Cherfa (@CherfaElyes)</name>
<email>elyes@sentrysoftware.com</email>
<roles>
<role>maintainer</role>
</roles>
</developer>
</developers>
<properties>
<!-- Java 11 -->
<maven.compiler.release>11</maven.compiler.release>
<!-- Reproducible Build -->
<!-- See https://maven.apache.org/guides/mini/guide-reproducible-builds.html -->
<!-- Also drives the Maven site copyright year and "Documentation as of" date; bump at release. -->
<project.build.outputTimestamp>2026-08-11T15:40:14Z</project.build.outputTimestamp>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>6.1.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- @SuppressFBWarnings for the justified SpotBugs suppressions; compile-time only
(provided scope), so the library stays dependency-free at runtime -->
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
<version>4.10.3</version>
<scope>provided</scope>
</dependency>
<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>
<!-- Actual build plugins -->
<plugins>
<!-- standalone CLI JAR -->
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>standalone</shadedClassifierName>
<createDependencyReducedPom>false</createDependencyReducedPom>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
<exclude>module-info.class</exclude>
<exclude>META-INF/versions/*/module-info.class</exclude>
</excludes>
</filter>
</filters>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>org.metricshub.winrm.cli.WinRmCli</mainClass>
<manifestEntries>
<Implementation-Title>${project.name}</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
</manifestEntries>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
<!-- formatter -->
<plugin>
<groupId>net.revelc.code.formatter</groupId>
<artifactId>formatter-maven-plugin</artifactId>
<version>2.29.0</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>validate</goal>
</goals>
</execution>
</executions>
<configuration>
<directories>
<directory>${project.build.sourceDirectory}</directory>
<directory>${project.build.testSourceDirectory}</directory>
</directories>
<includes>
<include>**/*.java</include>
</includes>
<configFile>metricshub-eclipse-formatter.xml</configFile>
<lineEnding>KEEP</lineEnding>
</configuration>
</plugin>
<!-- launch the packaged CLI in a separate JVM -->
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
<configuration>
<systemPropertyVariables>
<projectVersion>${project.version}</projectVersion>
<regularJar>${project.build.directory}/${project.build.finalName}.jar</regularJar>
<standaloneJar>${project.build.directory}/${project.build.finalName}-standalone.jar</standaloneJar>
</systemPropertyVariables>
</configuration>
</execution>
</executions>
</plugin>
<!--
pmd: fail the build on any violation of pmd.xml and on any CPD duplication, so the
PMD and CPD reports stay clean. Version pinned to the same one as the site report
below, so the gate and the report always run the same PMD — 3.28.0 runs PMD 7.17.0,
whose type resolution understands the class files of recent JDKs (7.7.0 failed on the
JDK 25 core library with "Unsupported class file major version 69" and then reported
false positives). minimumTokens matches the reporting configuration so the CPD gate
and the CPD report agree.
-->
<plugin>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.28.0</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>check</goal>
<goal>cpd-check</goal>
</goals>
</execution>
</executions>
<configuration>
<targetJdk>${maven.compiler.release}</targetJdk>
<minimumTokens>50</minimumTokens>
<rulesets>
<ruleset>pmd.xml</ruleset>
</rulesets>
<printFailingErrors>true</printFailingErrors>
</configuration>
</plugin>
<!--
checkstyle: fail the build on any violation of checkstyle.xml, so the Checkstyle
report stays clean. Version and configLocation match the parent's reporting
configuration, so the gate and the report always agree.
-->
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.6.0</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<configLocation>checkstyle.xml</configLocation>
</configuration>
</plugin>
<!--
spotbugs: fail the build on any SpotBugs finding, so the SpotBugs report stays clean.
Version pinned to the same one as the site report below, so the gate and the report
always run the same SpotBugs — 4.10.3.0 runs SpotBugs 4.10.3, which reads the class
files of recent JDKs (4.9.3 crashed on the JDK 25 core library with "Unsupported
class file major version 69").
-->
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.10.3.0</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- site: pin a recent maven-site-plugin (the version inherited from oss-parent is too old
for the Doxia 2.0 report plugins and raises a project-info-reports LinkageError) and add
the Sentry skin's companion maven-skin-tools -->
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>4.0.0-M16</version>
<dependencies>
<dependency>
<groupId>org.sentrysoftware.maven</groupId>
<artifactId>maven-skin-tools</artifactId>
<version>1.8.01</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<!-- Most report plugins (checkstyle, spotbugs, project-info-reports, jxr, javadoc) are
inherited from the oss-parent POM. The project-info-reports, jxr, javadoc and
surefire-report plugins below are declared (or their versions pinned) so the site
builds cleanly on the Doxia 2.0 stack that maven-site-plugin 4.0.0-M16 brings in, and
so the reports menu is fully populated. -->
<!-- Default project-info-reports (Summary, Dependencies, SCM, Licenses, Team, ...) -->
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.9.0</version>
<reportSets>
<reportSet>
<reports>
<report>ci-management</report>
<report>dependencies</report>
<report>dependency-info</report>
<report>distribution-management</report>
<report>issue-management</report>
<report>licenses</report>
<report>plugins</report>
<report>scm</report>
<report>summary</report>
<report>team</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<!-- jxr: cross-referenced HTML source, linked from the checkstyle/pmd reports -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>3.6.0</version>
</plugin>
<!-- javadoc report (published at apidocs/) -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<!-- surefire report: renders the unit-test results from target/surefire-reports -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>3.5.6</version>
</plugin>
<!-- spotbugs: same version as the build gate above, so the report shows what the gate
checked (and, like the gate, understands the class files of recent JDKs) -->
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.10.3.0</version>
</plugin>
<!-- pmd: same version as the build gate above, so the report shows what the gate checked -->
<plugin>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.28.0</version>
<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>
<!-- changelog: the inherited maven-changelog-plugin 3.0.0-M1 predates Doxia 2.0 and is not
part of the curated reports menu; disable it with an empty report set -->
<plugin>
<artifactId>maven-changelog-plugin</artifactId>
<reportSets>
<reportSet>
<reports />
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>