Skip to content
This repository was archived by the owner on Sep 17, 2024. It is now read-only.

Commit cd2a7d9

Browse files
committed
The properties required to sign the webstart application can now be defined in the settings.xml file.
1 parent 4235de7 commit cd2a7d9

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

pom.xml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
</execution>
133133
</executions>
134134
<configuration>
135-
<alias>silverpeas</alias>
135+
<alias>${silverpeas.alias}</alias>
136136
<storetype>jks</storetype>
137137
<keystore>${silverpeas.keystore}</keystore>
138138
<storepass>${silverpeas.storepass}</storepass>
@@ -160,10 +160,14 @@
160160
</profile>
161161
</profiles>
162162

163-
163+
<!-- The properties keystore.filename, keystore.storepass, and keystore.alias
164+
should be defined in your settings.xml file. These properties are used
165+
to sign the code of the applets and of the webstart applications used in
166+
Silverpeas. -->
164167
<properties>
165-
<silverpeas.keystore>${env.SILVERPEAS_HOME}/bin/silverpeas.jks</silverpeas.keystore>
166-
<silverpeas.storepass>changeit</silverpeas.storepass>
168+
<silverpeas.keystore>${keystore.filename}</silverpeas.keystore>
169+
<silverpeas.storepass>${keystore.storepass}</silverpeas.storepass>
170+
<silverpeas.alias>${keystore.alias}</silverpeas.alias>
167171
</properties>
168172

169173

0 commit comments

Comments
 (0)