Skip to content

Commit 4b799de

Browse files
committed
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
1 parent 089f3ef commit 4b799de

1 file changed

Lines changed: 95 additions & 0 deletions

File tree

pom.xml

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
Licensed to the Apache Software Foundation (ASF) under one or more
4+
contributor license agreements. See the NOTICE file distributed with
5+
this work for additional information regarding copyright ownership.
6+
The ASF licenses this file to You under the Apache License, Version 2.0
7+
(the "License"); you may not use this file except in compliance with
8+
the License. You may obtain a copy of the License at
9+
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
12+
Unless required by applicable law or agreed to in writing, software
13+
distributed under the License is distributed on an "AS IS" BASIS,
14+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
See the License for the specific language governing permissions and
16+
limitations under the License.
17+
-->
18+
<project
19+
xmlns="http://maven.apache.org/POM/4.0.0"
20+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
22+
<parent>
23+
<groupId>org.apache.commons</groupId>
24+
<artifactId>commons-parent</artifactId>
25+
<version>1</version>
26+
</parent>
27+
<modelVersion>4.0.0</modelVersion>
28+
<groupId>commons-cli-avalon</groupId>
29+
<artifactId>commons-cli-avalon</artifactId>
30+
<version>2.0-SNAPSHOT</version>
31+
<name>CLI-Avalon</name>
32+
33+
<inceptionYear>2002</inceptionYear>
34+
<description>
35+
Commons CLI (Avalon) provides a simple API for processing and
36+
validating a command line interface.
37+
</description>
38+
39+
<url>http://jakarta.apache.org/commons/cli/</url>
40+
41+
<issueManagement>
42+
<system>jira</system>
43+
<url>http://issues.apache.org/jira/browse/CLI</url>
44+
</issueManagement>
45+
46+
<scm>
47+
<connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/cli/branches/avalon-implementation</connection>
48+
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/proper/cli/branches/avalon-implementation</developerConnection>
49+
<url>http://svn.apache.org/viewvc/jakarta/commons/proper/cli/branches/avalon-implementation</url>
50+
</scm>
51+
52+
53+
<dependencies>
54+
55+
<!-- used for unit tests -->
56+
<dependency>
57+
<groupId>junit</groupId>
58+
<artifactId>junit</artifactId>
59+
<version>3.8.1</version>
60+
<scope>test</scope>
61+
</dependency>
62+
63+
<!-- used for unit tests -->
64+
<dependency>
65+
<groupId>jdepend</groupId>
66+
<artifactId>jdepend</artifactId>
67+
<version>2.5</version>
68+
<scope>test</scope>
69+
</dependency>
70+
71+
</dependencies>
72+
73+
<build>
74+
<sourceDirectory>src/java</sourceDirectory>
75+
<testSourceDirectory>src/test</testSourceDirectory>
76+
<resources>
77+
<resource>
78+
<directory>src/java/org/apache/commons/cli/avalon</directory>
79+
<targetPath>org/apache/commons/cli/avalon</targetPath>
80+
<includes>
81+
<include>**/*.properties</include>
82+
</includes>
83+
</resource>
84+
<resource>
85+
<directory>.</directory>
86+
<targetPath>META-INF</targetPath>
87+
<includes>
88+
<include>NOTICE.txt</include>
89+
<include>LICENSE.txt</include>
90+
</includes>
91+
</resource>
92+
</resources>
93+
</build>
94+
95+
</project>

0 commit comments

Comments
 (0)