2008-08-13 06:08:04 -04:00
|
|
|
<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">
|
|
|
|
|
|
|
|
<!--
|
|
|
|
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.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
2008-08-19 17:14:45 -04:00
|
|
|
<groupId>org.apache.solr</groupId>
|
2008-08-13 06:08:04 -04:00
|
|
|
<artifactId>solr-parent</artifactId>
|
|
|
|
<version>@maven_version@</version>
|
|
|
|
</parent>
|
|
|
|
|
2008-08-19 17:59:05 -04:00
|
|
|
<groupId>org.apache.solr</groupId>
|
2008-08-13 06:08:04 -04:00
|
|
|
<artifactId>solr-solrj</artifactId>
|
|
|
|
<name>Apache Solr Solrj</name>
|
|
|
|
<version>@maven_version@</version>
|
|
|
|
<description>Apache Solr Solrj</description>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- Solr -->
|
|
|
|
<dependency>
|
2008-08-19 17:59:05 -04:00
|
|
|
<groupId>org.apache.solr</groupId>
|
2008-08-13 06:08:04 -04:00
|
|
|
<artifactId>solr-common</artifactId>
|
|
|
|
<version>@maven_version@</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Apache Commons -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-httpclient</groupId>
|
|
|
|
<artifactId>commons-httpclient</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>1.3.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<version>1.0.4</version>
|
|
|
|
</dependency>
|
2008-08-14 16:53:05 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
</dependency>
|
2008-08-13 06:08:04 -04:00
|
|
|
|
|
|
|
<!-- Stax -->
|
|
|
|
<dependency>
|
2008-09-26 10:07:05 -04:00
|
|
|
<groupId>woodstox</groupId>
|
|
|
|
<artifactId>wstx-asl</artifactId>
|
|
|
|
<version>3.2.7</version>
|
2008-08-13 06:08:04 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-09-26 10:07:05 -04:00
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-stax-api_1.0_spec</artifactId>
|
2008-08-13 06:08:04 -04:00
|
|
|
<version>1.0.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>stax-utils</groupId>
|
|
|
|
<artifactId>stax-utils</artifactId>
|
|
|
|
<version>snapshot-20040917</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|