2007-05-31 14:09:57 -04:00
|
|
|
<?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">
|
|
|
|
|
2006-07-04 14:17:24 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2007-04-20 07:43:31 -04:00
|
|
|
<groupId>org.apache.poi</groupId>
|
2006-07-04 14:17:24 -04:00
|
|
|
<artifactId>poi</artifactId>
|
|
|
|
<version>@VERSION@</version>
|
|
|
|
<packaging>jar</packaging>
|
2007-05-31 14:09:57 -04:00
|
|
|
<name>Apache POI</name>
|
|
|
|
<url>http://poi.apache.org/</url>
|
|
|
|
<description>Apache POI - Java API To Access Microsoft Format Files</description>
|
2006-07-04 14:17:24 -04:00
|
|
|
|
2007-05-31 14:09:57 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
<!-- need exclusion until commons-logging pom is fixed after 1.1 -->
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>logkit</groupId>
|
|
|
|
<artifactId>logkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>avalon-framework</groupId>
|
|
|
|
<artifactId>avalon-framework</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<version>1.2.13</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2006-07-04 14:17:24 -04:00
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
<scm>
|
|
|
|
<url>http://svn.apache.org/viewvc/jakarta/poi/trunk</url>
|
|
|
|
<connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/poi/trunk</connection>
|
|
|
|
</scm>
|
2007-04-26 05:50:28 -04:00
|
|
|
<issueManagement>
|
2007-04-25 06:37:14 -04:00
|
|
|
<system>bugzilla</system>
|
|
|
|
<url>http://issues.apache.org/bugzilla/buglist.cgi?product=POI</url>
|
2007-04-26 05:50:28 -04:00
|
|
|
</issueManagement>
|
2006-07-04 14:17:24 -04:00
|
|
|
<organization>
|
|
|
|
<name>Apache Software Foundation</name>
|
|
|
|
<url>http://www.apache.org/</url>
|
|
|
|
</organization>
|
2007-04-26 05:50:28 -04:00
|
|
|
</project>
|