|
1 | | -<?xml version="1.0"?> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <!-- |
3 | | - SPDX-FileCopyrightText: © Sebastian Thomschke and contributors. |
| 3 | + SPDX-FileCopyrightText: © Sebastian Thomschke and contributors |
4 | 4 | SPDX-FileContributor: Sebastian Thomschke |
5 | 5 | SPDX-License-Identifier: EPL-2.0 |
6 | 6 | SPDX-ArtifactOfProjectHomePage: https://github.com/sebthom/extra-syntax-highlighting-eclipse-plugin |
|
23 | 23 | <packaging>eclipse-repository</packaging> |
24 | 24 |
|
25 | 25 | <properties> |
26 | | - <jarsigner.keystore.alias>sebthom.github.io</jarsigner.keystore.alias> |
27 | 26 | <!-- using a TimeStamp Authority allows signed jars to be used even after expiration of the signing certificates |
28 | 27 | which is esp. important when short living certs (like letsencrypt) are used --> |
29 | 28 | <jarsigner.timestamp.url>http://timestamp.digicert.com?alg=sha256</jarsigner.timestamp.url> |
30 | 29 | <!-- properties to be specified via the CLI: --> |
31 | | - <!-- * jarsigner.keystore.path --> |
32 | | - <!-- * jarsigner.keystore.password --> |
| 30 | + <!-- * -Djarsigner.alias= --> |
| 31 | + <!-- * -Djarsigner.keystore= --> |
| 32 | + <!-- * -Djarsigner.keypass= --> |
| 33 | + <!-- * -Djarsigner.storepass= --> |
33 | 34 | </properties> |
34 | 35 |
|
35 | 36 | <profiles> |
36 | 37 | <profile> |
37 | 38 | <activation> |
38 | 39 | <property> |
39 | | - <name>jarsigner.keystore.path</name> |
| 40 | + <name>jarsigner.keystore</name> |
40 | 41 | </property> |
41 | 42 | </activation> |
42 | 43 | <build> |
|
70 | 71 | </execution> |
71 | 72 | </executions> |
72 | 73 | <configuration> |
73 | | - <alias>${jarsigner.keystore.alias}</alias> |
74 | | - <keystore>${jarsigner.keystore.path}</keystore> |
75 | | - <storepass>${jarsigner.keystore.password}</storepass> |
76 | | - <keypass>${jarsigner.keystore.password}</keypass> |
77 | | - |
78 | 74 | <archiveDirectory>${project.build.directory}/repository/</archiveDirectory> |
79 | 75 | <includes> |
80 | 76 | <include>features/${project.groupId}*</include> |
|
0 commit comments