Create minimal POM git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/cli/branches/avalon-implementation@529044 13f79535-47bb-0310-9956-ffa450edef68
Project: http://git-wip-us.apache.org/repos/asf/commons-cli/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-cli/commit/4b799dee Tree: http://git-wip-us.apache.org/repos/asf/commons-cli/tree/4b799dee Diff: http://git-wip-us.apache.org/repos/asf/commons-cli/diff/4b799dee Branch: refs/heads/avalon-implementation Commit: 4b799deefa16558f8af0eaab299e8c0b09c9e2aa Parents: 089f3ef Author: Sebastian Bazley <[email protected]> Authored: Sun Apr 15 18:33:27 2007 +0000 Committer: Sebastian Bazley <[email protected]> Committed: Sun Apr 15 18:33:27 2007 +0000 ---------------------------------------------------------------------- pom.xml | 95 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-cli/blob/4b799dee/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..d418208 --- /dev/null +++ b/pom.xml @@ -0,0 +1,95 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You 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/maven-v4_0_0.xsd"> + <parent> + <groupId>org.apache.commons</groupId> + <artifactId>commons-parent</artifactId> + <version>1</version> + </parent> + <modelVersion>4.0.0</modelVersion> + <groupId>commons-cli-avalon</groupId> + <artifactId>commons-cli-avalon</artifactId> + <version>2.0-SNAPSHOT</version> + <name>CLI-Avalon</name> + + <inceptionYear>2002</inceptionYear> + <description> + Commons CLI (Avalon) provides a simple API for processing and + validating a command line interface. + </description> + + <url>http://jakarta.apache.org/commons/cli/</url> + + <issueManagement> + <system>jira</system> + <url>http://issues.apache.org/jira/browse/CLI</url> + </issueManagement> + + <scm> + <connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/cli/branches/avalon-implementation</connection> + <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/proper/cli/branches/avalon-implementation</developerConnection> + <url>http://svn.apache.org/viewvc/jakarta/commons/proper/cli/branches/avalon-implementation</url> + </scm> + + + <dependencies> + + <!-- used for unit tests --> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>3.8.1</version> + <scope>test</scope> + </dependency> + + <!-- used for unit tests --> + <dependency> + <groupId>jdepend</groupId> + <artifactId>jdepend</artifactId> + <version>2.5</version> + <scope>test</scope> + </dependency> + + </dependencies> + + <build> + <sourceDirectory>src/java</sourceDirectory> + <testSourceDirectory>src/test</testSourceDirectory> + <resources> + <resource> + <directory>src/java/org/apache/commons/cli/avalon</directory> + <targetPath>org/apache/commons/cli/avalon</targetPath> + <includes> + <include>**/*.properties</include> + </includes> + </resource> + <resource> + <directory>.</directory> + <targetPath>META-INF</targetPath> + <includes> + <include>NOTICE.txt</include> + <include>LICENSE.txt</include> + </includes> + </resource> + </resources> + </build> + +</project> \ No newline at end of file
