File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 35
35
<maven .compiler.source>11</maven .compiler.source>
36
36
<maven .compiler.target>11</maven .compiler.target>
37
37
<maven .javadoc.skip>true</maven .javadoc.skip>
38
+ <jarsigner .skip>true</jarsigner .skip>
39
+
38
40
39
41
<!-- profile managed values -->
40
42
<spotbugs .skip>false</spotbugs .skip>
74
76
<maven .javadoc.skip>false</maven .javadoc.skip>
75
77
</properties >
76
78
</profile >
79
+ <profile >
80
+ <id >enable-jarsigner</id >
81
+ <properties >
82
+ <jarsigner .skip>false</jarsigner .skip>
83
+ </properties >
84
+ </profile >
77
85
</profiles >
78
86
79
87
<build >
378
386
</execution >
379
387
</executions >
380
388
</plugin >
389
+ <plugin >
390
+ <groupId >org.apache.maven.plugins</groupId >
391
+ <artifactId >maven-jarsigner-plugin</artifactId >
392
+ <version >3.0.0</version >
393
+ <executions >
394
+ <execution >
395
+ <id >sign</id >
396
+ <phase >package</phase >
397
+ <goals >
398
+ <goal >sign</goal >
399
+ </goals >
400
+ </execution >
401
+ </executions >
402
+ <configuration >
403
+ <skip >${jarsigner.skip} </skip >
404
+ <keystore >${jarsigner.keystore} </keystore >
405
+ <alias >${jarsigner.alias} </alias >
406
+ <storepass >${jarsigner.storepass} </storepass >
407
+ <keypass >${jarsigner.keypass} </keypass >
408
+ <verbose >false</verbose >
409
+ <removeExistingSignatures >true</removeExistingSignatures >
410
+ <includes >
411
+ <include >*.jar</include >
412
+ <include >*.war</include >
413
+ </includes >
414
+ </configuration >
415
+ </plugin >
381
416
</plugins >
382
417
</build >
383
418
You can’t perform that action at this time.
0 commit comments