Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.1
-
Fix Version/s: 1.2
-
Labels:None
-
Environment:Windows 7
-
Number of attachments :
Description
When specifying arguments in the plugin configuration, e.g.
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>keytool-maven-plugin</artifactId>
<version>1.1</version>
<configuration>
<alias>my-alias</alias>
<keystore>$
/my-keystore</keystore>
<storepass>mypasswd</storepass>
<file>$
/src/main/resources/META-INF/mycert.crt</file>
<arguments>
<argument>-provider org.bouncycastle.jce.provider.BouncyCastleProvider</argument>
<argument>-storetype BKS</argument>
<argument>-providerpath <provider_path></argument>
</arguments>
</configuration>
</plugin>
the import command fails because the additional arguments -provider, -storetype and -providerpath are enclosed in double quotes.
It has only been tested in Windows 7.
Issue Links
- is related to
-
MKEYTOOL-19
Introduce new mojos to perform all missing keytool commands
-
-
MKEYTOOL-20
Deprecates old mojo
-
Perhaps there was a misunderstanding from my side. Maybe options -provider, -storetype and -providerpath are not supported yet.
Please verify this assumption in order to close the ticket.