java-launcher
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.googlecode.ssd-utils</groupId> <artifactId>java-launcher</artifactId> <version>0.0.1</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>com.googlecode.ssd-utils</groupId> <artifactId>java-launcher</artifactId> <name>Java Launcher</name> <version>0.0.1</version> <description>Java Launcher.</description> <url>http://ssd-utils.googlecode.com</url> <inceptionYear>2011</inceptionYear> <developers> <developer> <id>ssd</id> <name>Sylvain Sicard</name> <email>sylvain.sicard@gmail.com</email> </developer> </developers> <licenses> <license> <name>GNU Lesser General Public License</name> <url>http://www.gnu.org/licenses/lgpl.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:svn:http://ssd-utils.googlecode.com/svn/tags/java-launcher-0.0.1</connection> <developerConnection>scm:svn:https://ssd-utils.googlecode.com/svn/tags/java-launcher-0.0.1</developerConnection> <url>http://code.google.com/p/ssd-utils/source/browse/tags/java-launcher-0.0.1</url> </scm> <dependencies> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <version>1.2</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>net.sf.scannotation</groupId> <artifactId>scannotation</artifactId> <version>1.0.2</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <type>jar</type> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <preparationGoals>clean install</preparationGoals> </configuration> </plugin> </plugins> </build> </project>