Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Enable key+certificate signing for development use.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Aug 1, 2016
1 parent ccd6863 commit 43a81b9
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -660,10 +660,24 @@
<arg if:set="sign.uk.keystoreProvider" value="--keystoreProvider"/>
<arg if:set="sign.uk.keystoreProvider" value="${sign.uk.keystoreProvider}"/>

<arg value="--key"/>
<arg value="${sign.uk.keyAlias}"/>
<!--
The "key" option can represent either a key file or a key alias.
Different properties are used for the two cases (see XSTJ-67).
-->
<arg if:set="sign.uk.keyFile" value="--key"/>
<arg if:set="sign.uk.keyFile" value="${sign.uk.keyFile}"/>
<arg if:set="sign.uk.keyAlias" value="--key"/>
<arg if:set="sign.uk.keyAlias" value="${sign.uk.keyAlias}"/>

<!--
Include an X.509 certificate if one is specified.
-->
<arg if:set="sign.uk.certificate" value="--certificate"/>
<arg if:set="sign.uk.certificate" value="${sign.uk.certificate}"/>

<arg value="--keyPassword"/>
<arg value="${sign.uk.keyPassword}"/>

<arg value="--outFile"/>
<arg value="@{o}"/>
<arg value="--referenceIdAttributeName"/>
Expand Down

0 comments on commit 43a81b9

Please sign in to comment.