Maven Keytool Plugin.
A plugin that wraps the keytool program bundled with Sun's Java SDK. Allows to manipulate keystores..
Here is the list of declaration for keytool-maven-plugin. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.codehaus.mojo</groupId> <artifactId>keytool-maven-plugin</artifactId> <version>1.0</version> </dependency>
If you think this Maven repository POM file listing for keytool-maven-plugin is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Apache License 2
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The keytool-maven-plugin-1.0 has 4 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Build | maven-project 2.0.6 This library is used to not only read Maven project object model files, but to assemble inheritence and to retrieve remote models as required. | 36 |
Data Structure | commons-lang 2.1 Commons.Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang. | 99 |
The following packages are defined in the keytool-maven-plugin-1.0.jar
org.codehaus.mojo.keytool
Here is the content of the POM file.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <parent> <artifactId>mojo</artifactId> <groupId>org.codehaus.mojo</groupId> <version>16</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>keytool-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <version>1.0</version> <name>Maven Keytool Plugin</name> <description>A plugin that wraps the keytool program bundled with Sun's Java SDK. Allows to manipulate keystores.</description> <issueManagement> <system>jira</system> <url>http://jira.codehaus.org/browse/MKEYTOOL</url> </issueManagement> <inceptionYear>2005</inceptionYear> <prerequisites> <maven>2.0.6</maven> </prerequisites> <licenses> <license> <name>Apache License 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <contributors> <contributor> <name>Sharmarke Aden</name> <email>mark.aden@gmail.com</email> <timezone>-7</timezone> </contributor> </contributors> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.0.6</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>2.0.6</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>1.4.9</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.1</version> </dependency> </dependencies> <scm> <connection>scm:svn:http://svn.codehaus.org/mojo/tags/keytool-maven-plugin-1.0</connection> <developerConnection>scm:svn:https://svn.codehaus.org/mojo/tags/keytool-maven-plugin-1.0</developerConnection> <url>http://svn.codehaus.org/mojo/tags/keytool-maven-plugin-1.0</url> </scm> </project>