Module org.cumulus4j.keymanager.cliThis is a command line interface for managing a key store and not meant to be deployed anywhere. After downloading the JAR, use the following command to get help for this tool: java -jar org.cumulus4j.keymanager.cli-1.0.1.jar help You can manage local key stores (in the local file system) as well as key stores managed by a remote key server. Here is an excerpt of the functionality (there are more features - use the above help command for a complete listing):
MavenAfter adding the repositories documented on the Download page to your pom.xml, you can add the following dependency in order to use this module: <dependencies> ... <dependency> <groupId>org.cumulus4j</groupId> <artifactId>org.cumulus4j.keymanager.cli</artifactId> </dependency> ... </dependencies> The above dependency does not (and should not!) declare a version. Instead, it is recommended that you add the following to your dependency-management: <dependencyManagement> <dependencies> ... <dependency> <groupId>org.cumulus4j</groupId> <artifactId>org.cumulus4j.parent</artifactId> <type>pom</type> <version>1.0.1</version> <scope>import</scope> </dependency> ... </dependencies> </dependencyManagement> However, as said: This module is not a library and therefore you should normally not need to include it into the pom.xml of any of your modules. We provide these Maven coordinates merely for special situations like bundling this CLI into an installation package. |
Documentation
AboutProject DocumentationBabelReleases |