| Module org.cumulus4j.keystoreThe key-store manages keys safely in the local file system. It is similar to a Java-KeyStore, but specifically serves the needs of Cumulus4j. Continue reading about the key-store here. 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.keystore</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.2.0</version>
                        <scope>import</scope>
                </dependency>
                ...
        </dependencies>
</dependencyManagement>Deployment locationThe module-location-matrix shows where this module needs to be deployed. | Documentation
 AboutProject DocumentationBabelReleases |