options-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.windwards</groupId>
<artifactId>options-parent</artifactId>
<version>1.1.1</version>
</dependency><?xml version="1.0" encoding="utf-8"?>
<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>
<groupId>net.windwards</groupId>
<artifactId>options-parent</artifactId>
<version>1.1.1</version>
<packaging>pom</packaging>
<name>Windwards Option Parser</name>
<description>
options is a Java toolkit for parsing command line options.
It focuses on ease-of-use. It uses annotations to declare valid options
and takes care not to intrude on your class structure. It adheres to
the GNU getopt style of options.
</description>
<url>http://quest.windwards.net/content/options-java-lib-parsing-command-line-options</url>
<developers>
<developer>
<name>Quest</name>
<email>options at quest windwards net</email>
</developer>
</developers>
<licenses>
<license>
<name>GNU Lesser General Public License</name>
<url>http://www.gnu.org/licenses/lgpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<modules>
<module>core</module>
<module>options-jdk7-valueparsers</module>
</modules>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.0</version>
<type>jar</type>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<directory>build</directory>
<outputDirectory>build/prod</outputDirectory>
<testOutputDirectory>build/test</testOutputDirectory>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<compilerVersion>5</compilerVersion>
<source>5</source>
<target>5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<id>attach-javadoc</id>
<phase>install</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>install</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<preparationGoals>clean</preparationGoals>
<useReleaseProfile>false</useReleaseProfile>
<mavenExecutorId>forked-path</mavenExecutorId>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
</extension>
</extensions>
</build>
<scm>
<url>https://bitbucket.org/quest/options</url>
<connection>scm:hg:https://bitbucket.org/quest/options</connection>
<tag>1.1.1</tag>
</scm>
<profiles>
<profile>
<id>local-build</id>
<distributionManagement>
<repository>
<id>net.windwards.repo</id>
<name>windwards repo</name>
<url>scpexe://www.windwards.net/mnt/web/repository</url>
</repository>
<snapshotRepository>
<id>net.windwards.snapshots</id>
<name>windwards snapshots</name>
<url>scpexe://www.windwards.net/mnt/web/snapshots</url>
</snapshotRepository>
</distributionManagement>
</profile>
<profile>
<id>sonatype-build</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>install</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
</profiles>
</project>