Skip to content

Commit e68118e

Browse files
committed
Finder is also going to want to use CLI, so creating an m2 pom for it as well
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/cli/trunk@441918 13f79535-47bb-0310-9956-ffa450edef68
1 parent 37ead87 commit e68118e

1 file changed

Lines changed: 175 additions & 0 deletions

File tree

pom.xml

Lines changed: 175 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,175 @@
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</artifactId>
25+
<version>1-SNAPSHOT</version>
26+
</parent>
27+
<modelVersion>4.0.0</modelVersion>
28+
<groupId>org.apache.commons</groupId>
29+
<artifactId>commons-cli</artifactId>
30+
<version>2.0-SNAPSHOT</version>
31+
<name>CLI</name>
32+
33+
<inceptionYear>2002</inceptionYear>
34+
<description>
35+
Commons CLI provides a simple API for presenting, processing and
36+
validating a command line interface.
37+
</description>
38+
39+
<url>http://jakarta.apache.org/commons/cli/</url>
40+
41+
<organization>
42+
<name>Apache Software Foundation</name>
43+
<url>http://www.apache.org</url>
44+
</organization>
45+
46+
<licenses>
47+
<license>
48+
<name>The Apache Software License, Version 2.0</name>
49+
<url>/LICENSE.txt</url>
50+
<distribution>repo</distribution>
51+
</license>
52+
</licenses>
53+
54+
<issueManagement>
55+
<system>jira</system>
56+
<url>http://issues.apache.org/jira/browse/CLI</url>
57+
</issueManagement>
58+
59+
<scm>
60+
<connection>scm:svn:scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/proper/cli/trunk</connection>
61+
<developerConnection>scm:svn:scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/proper/cli/trunk</developerConnection>
62+
<url>http://svn.apache.org/viewvc/jakarta/commons/proper/cli/trunk</url>
63+
</scm>
64+
65+
<developers>
66+
<developer>
67+
<name>James Strachan</name>
68+
<id>jstrachan</id>
69+
<email>jstrachan@apache.org</email>
70+
<organization>SpiritSoft, Inc.</organization>
71+
</developer>
72+
<developer>
73+
<name>Bob McWhirter</name>
74+
<id>bob</id>
75+
<email>bob@werken.com</email>
76+
<organization>Werken</organization>
77+
<roles>
78+
<role>contributed ideas and code from werken.opt</role>
79+
</roles>
80+
</developer>
81+
<developer>
82+
<name>John Keyes</name>
83+
<id>jkeyes</id>
84+
<email>jbjk@mac.com</email>
85+
<organization>integral Source</organization>
86+
<roles>
87+
<role>contributed ideas and code from Optz</role>
88+
</roles>
89+
</developer>
90+
<developer>
91+
<name>Rob Oxspring</name>
92+
<id>roxspring</id>
93+
<email>roxspring@imapmail.org</email>
94+
<organization>Indigo Stone</organization>
95+
<roles>
96+
<role>designed CLI2</role>
97+
</roles>
98+
</developer>
99+
</developers>
100+
101+
<contributors>
102+
<contributor>
103+
<name>Peter Donald</name>
104+
<roles>
105+
<role>contributed ideas and code from Avalon Excalibur's cli package</role>
106+
</roles>
107+
</contributor>
108+
<contributor>
109+
<name>Berin Loritsch</name>
110+
<email>bloritsch@apache.org</email>
111+
<roles>
112+
<role>helped in the Avalon CLI merge</role>
113+
</roles>
114+
</contributor>
115+
<contributor>
116+
<name>Peter Maddocks</name>
117+
<email>peter_maddocks@hp.com</email>
118+
<organization>Hewlett-Packard</organization>
119+
<roles>
120+
<role>supplied patch</role>
121+
</roles>
122+
</contributor>
123+
</contributors>
124+
125+
<dependencies>
126+
127+
<!-- used in PatternOptionBuilder -->
128+
<dependency>
129+
<groupId>commons-lang</groupId>
130+
<artifactId>commons-lang</artifactId>
131+
<version>2.1</version>
132+
</dependency>
133+
134+
<!-- used for unit tests -->
135+
<dependency>
136+
<groupId>junit</groupId>
137+
<artifactId>junit</artifactId>
138+
<version>3.8.1</version>
139+
<scope>test</scope>
140+
</dependency>
141+
142+
<!-- used for unit tests -->
143+
<dependency>
144+
<groupId>jdepend</groupId>
145+
<artifactId>jdepend</artifactId>
146+
<version>2.5</version>
147+
<scope>test</scope>
148+
</dependency>
149+
150+
</dependencies>
151+
152+
<build>
153+
<sourceDirectory>src/java</sourceDirectory>
154+
<testSourceDirectory>src/test</testSourceDirectory>
155+
<resources>
156+
<resource>
157+
<directory>src/java/org/apache/commons/cli2</directory>
158+
<targetPath>org/apache/commons/cli2</targetPath>
159+
<includes>
160+
<include>**/*.properties</include>
161+
</includes>
162+
</resource>
163+
</resources>
164+
<testResources>
165+
<testResource>
166+
<directory>src/test/org/apache/commons/cli2/resource</directory>
167+
<targetPath>org/apache/commons/cli2/resource</targetPath>
168+
<includes>
169+
<include>**/*.properties</include>
170+
</includes>
171+
</testResource>
172+
</testResources>
173+
</build>
174+
175+
</project>

0 commit comments

Comments
 (0)