cli
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.dharwin.common.tools.cli</groupId>
<artifactId>cli</artifactId>
<version>1.0</version>
</dependency><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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.dharwin.common.tools.cli</groupId> <artifactId>cli</artifactId> <version>1.0</version> <name>Command Line Interface API Modules</name> <packaging>pom</packaging> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <licenses> <license> <name>BSD License</name> <url>http://www.opensource.org/licenses/bsd-license.php</url> </license> </licenses> <url>http://code.google.com/p/java-cli-api/</url> <scm> <url>http://java-cli-api.googlecode.com/svn/tags/cli-1.0</url> <connection>scm:svn:http://java-cli-api.googlecode.com/svn/tags/cli-1.0</connection> <developerConnection>scm:svn:https://java-cli-api.googlecode.com/svn/tags/cli-1.0</developerConnection> </scm> <developers> <developer> <name>Sean Ballew</name> <id>sballew</id> <email>sballew7@gmail.com</email> <timezone>-8</timezone> <roles> <role>owner</role> <role>developer</role> </roles> </developer> </developers> <modules> <module>cli-api</module> <module>sample-cli-client</module> </modules> <build> <plugins> <!-- Attach sources --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Attach Javadocs --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Compile for Java 6 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>