licensing-licensor-ui-cli
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.nicholaswilliams.java.licensing</groupId>
<artifactId>licensing-licensor-ui-cli</artifactId>
<version>1.1.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ pom.xml from LicenseManager modified Wednesday, April 24, 2013 12:03:21 CDT (-0500).
~
~ Copyright 2010-2013 the original author or authors.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<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>
<parent>
<groupId>net.nicholaswilliams.java.licensing</groupId>
<artifactId>licensing-parent</artifactId>
<version>1.1.0</version>
</parent>
<artifactId>licensing-licensor-ui-cli</artifactId>
<packaging>jar</packaging>
<name>LicenseManager - Licensor CLI UI</name>
<dependencies>
<dependency>
<groupId>net.nicholaswilliams.java.licensing</groupId>
<artifactId>licensing-core</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.nicholaswilliams.java.licensing</groupId>
<artifactId>licensing-licensor-base</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.nicholaswilliams.java.licensing</groupId>
<artifactId>licensing-licensor-ui-core</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.nicholaswilliams.java.licensing</groupId>
<artifactId>licensing-core</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>source/production/java</sourceDirectory>
<resources>
<resource>
<directory>source/production/resources</directory>
</resource>
<resource>
<targetPath>META-INF</targetPath>
<directory>../build/jar/META-INF</directory>
</resource>
</resources>
<testSourceDirectory>source/test/java/unit</testSourceDirectory>
<testResources>
<testResource>
<directory>source/test/resources</directory>
</testResource>
</testResources>
</build>
</project>