|
| 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 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"> |
| 19 | + <parent> |
| 20 | + <groupId>org.apache.commons</groupId> |
| 21 | + <artifactId>commons-parent</artifactId> |
| 22 | + <version>10</version> |
| 23 | + </parent> |
| 24 | + <modelVersion>4.0.0</modelVersion> |
| 25 | + <groupId>org.apache.commons</groupId> |
| 26 | + <artifactId>commons-cli</artifactId> |
| 27 | + <version>1.2-SNAPSHOT</version> |
| 28 | + <name>Commons CLI</name> |
| 29 | + |
| 30 | + <inceptionYear>2002</inceptionYear> |
| 31 | + <description> |
| 32 | + Commons CLI provides a simple API for presenting, processing and |
| 33 | + validating a command line interface. |
| 34 | + </description> |
| 35 | + |
| 36 | + <url>http://commons.apache.org/cli/</url> |
| 37 | + |
| 38 | + <issueManagement> |
| 39 | + <system>jira</system> |
| 40 | + <url>http://issues.apache.org/jira/browse/CLI</url> |
| 41 | + </issueManagement> |
| 42 | + |
| 43 | + <scm> |
| 44 | + <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/cli/branches/cli-1.x/</connection> |
| 45 | + <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/cli/branches/cli-1.x/</developerConnection> |
| 46 | + <url>http://svn.apache.org/viewvc/commons/proper/cli/branches/cli-1.x/</url> |
| 47 | + </scm> |
| 48 | + |
| 49 | + <developers> |
| 50 | + <developer> |
| 51 | + <name>James Strachan</name> |
| 52 | + <id>jstrachan</id> |
| 53 | + <email>jstrachan@apache.org</email> |
| 54 | + <organization>SpiritSoft, Inc.</organization> |
| 55 | + </developer> |
| 56 | + <developer> |
| 57 | + <name>Bob McWhirter</name> |
| 58 | + <id>bob</id> |
| 59 | + <email>bob@werken.com</email> |
| 60 | + <organization>Werken</organization> |
| 61 | + <roles> |
| 62 | + <role>contributed ideas and code from werken.opt</role> |
| 63 | + </roles> |
| 64 | + </developer> |
| 65 | + <developer> |
| 66 | + <name>John Keyes</name> |
| 67 | + <id>jkeyes</id> |
| 68 | + <email>jbjk@mac.com</email> |
| 69 | + <organization>integral Source</organization> |
| 70 | + <roles> |
| 71 | + <role>contributed ideas and code from Optz</role> |
| 72 | + </roles> |
| 73 | + </developer> |
| 74 | + <developer> |
| 75 | + <name>Rob Oxspring</name> |
| 76 | + <id>roxspring</id> |
| 77 | + <email>roxspring@imapmail.org</email> |
| 78 | + <organization>Indigo Stone</organization> |
| 79 | + <roles> |
| 80 | + <role>designed CLI2</role> |
| 81 | + </roles> |
| 82 | + </developer> |
| 83 | + </developers> |
| 84 | + |
| 85 | + <contributors> |
| 86 | + <contributor> |
| 87 | + <name>Peter Donald</name> |
| 88 | + <roles> |
| 89 | + <role>contributed ideas and code from Avalon Excalibur's cli package</role> |
| 90 | + </roles> |
| 91 | + </contributor> |
| 92 | + <contributor> |
| 93 | + <name>Brian Egge</name> |
| 94 | + <roles> |
| 95 | + <role>made the 1.1 release happen</role> |
| 96 | + </roles> |
| 97 | + </contributor> |
| 98 | + <contributor> |
| 99 | + <name>Berin Loritsch</name> |
| 100 | + <email>bloritsch@apache.org</email> |
| 101 | + <roles> |
| 102 | + <role>helped in the Avalon CLI merge</role> |
| 103 | + </roles> |
| 104 | + </contributor> |
| 105 | + <contributor> |
| 106 | + <name>Peter Maddocks</name> |
| 107 | + <email>peter_maddocks@hp.com</email> |
| 108 | + <organization>Hewlett-Packard</organization> |
| 109 | + <roles> |
| 110 | + <role>supplied patch</role> |
| 111 | + </roles> |
| 112 | + </contributor> |
| 113 | + <contributor> |
| 114 | + <name>Andrew Shirley</name> |
| 115 | + <roles> |
| 116 | + <role>lots of fixes for 1.1</role> |
| 117 | + </roles> |
| 118 | + </contributor> |
| 119 | + </contributors> |
| 120 | + |
| 121 | + <dependencies> |
| 122 | + <!-- used for unit tests --> |
| 123 | + <dependency> |
| 124 | + <groupId>junit</groupId> |
| 125 | + <artifactId>junit</artifactId> |
| 126 | + <version>3.8.1</version> |
| 127 | + <scope>test</scope> |
| 128 | + </dependency> |
| 129 | + </dependencies> |
| 130 | + |
| 131 | + <properties> |
| 132 | + <commons.componentid>cli</commons.componentid> |
| 133 | + <commons.osgi.symbolicName>org.apache.commons.cli</commons.osgi.symbolicName> |
| 134 | + <commons.release.version>1.1</commons.release.version> |
| 135 | + <commons.binary.suffix></commons.binary.suffix> |
| 136 | + <commons.jira.id>CLI</commons.jira.id> |
| 137 | + <commons.jira.pid>12310463</commons.jira.pid> |
| 138 | + </properties> |
| 139 | + |
| 140 | + <build> |
| 141 | + <sourceDirectory>src/java</sourceDirectory> |
| 142 | + <testSourceDirectory>src/test</testSourceDirectory> |
| 143 | + <resources> |
| 144 | + <resource> |
| 145 | + <directory>.</directory> |
| 146 | + <targetPath>META-INF</targetPath> |
| 147 | + <includes> |
| 148 | + <include>NOTICE.txt</include> |
| 149 | + <include>LICENSE.txt</include> |
| 150 | + </includes> |
| 151 | + </resource> |
| 152 | + </resources> |
| 153 | +<!-- |
| 154 | + <plugins> |
| 155 | + <plugin> |
| 156 | + <artifactId>maven-assembly-plugin</artifactId> |
| 157 | + <configuration> |
| 158 | + <descriptors> |
| 159 | + <descriptor>src/assembly/bin.xml</descriptor> |
| 160 | + <descriptor>src/assembly/src.xml</descriptor> |
| 161 | + </descriptors> |
| 162 | + <tarLongFileMode>gnu</tarLongFileMode> |
| 163 | + </configuration> |
| 164 | + </plugin> |
| 165 | + </plugins> |
| 166 | +--> |
| 167 | + </build> |
| 168 | + |
| 169 | + <reporting> |
| 170 | + <plugins> |
| 171 | + <plugin> |
| 172 | + <groupId>org.apache.maven.plugins</groupId> |
| 173 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 174 | + <configuration> |
| 175 | + <linksource>true</linksource> |
| 176 | + <links> |
| 177 | + <link>http://java.sun.com/javase/6/docs/api</link> |
| 178 | + </links> |
| 179 | + </configuration> |
| 180 | + </plugin> |
| 181 | + <plugin> |
| 182 | + <groupId>org.codehaus.mojo</groupId> |
| 183 | + <artifactId>findbugs-maven-plugin</artifactId> |
| 184 | + <version>1.2</version> |
| 185 | + <configuration> |
| 186 | + <threshold>Normal</threshold> |
| 187 | + <effort>Default</effort> |
| 188 | + </configuration> |
| 189 | + </plugin> |
| 190 | + <plugin> |
| 191 | + <groupId>org.codehaus.mojo</groupId> |
| 192 | + <artifactId>cobertura-maven-plugin</artifactId> |
| 193 | + <version>2.2</version> |
| 194 | + </plugin> |
| 195 | + </plugins> |
| 196 | + </reporting> |
| 197 | +</project> |
0 commit comments