SOLR-3310: nuke the solr-langdetect maven packaging

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1309191 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-04-04 00:47:22 +00:00
parent 53b71596b2
commit 755b86b429
6 changed files with 7 additions and 65 deletions

View File

@ -156,7 +156,7 @@
<classpathentry kind="lib" path="solr/contrib/extraction/lib/tika-core-1.0.jar"/>
<classpathentry kind="lib" path="solr/contrib/extraction/lib/tika-parsers-1.0.jar"/>
<classpathentry kind="lib" path="solr/contrib/extraction/lib/xmlbeans-2.3.0.jar"/>
<classpathentry kind="lib" path="solr/contrib/langid/lib/langdetect-c51112119be53a81e59706ce57bacaa90c052284.jar"/>
<classpathentry kind="lib" path="solr/contrib/langid/lib/langdetect-1.1-20120112.jar"/>
<classpathentry kind="lib" path="solr/contrib/langid/lib/jsonic-1.2.7.jar"/>
<classpathentry kind="lib" path="solr/contrib/uima/lib/commons-digester-2.0.jar"/>
<classpathentry kind="lib" path="solr/contrib/uima/lib/AlchemyAPIAnnotator-2.3.1.jar"/>

View File

@ -216,9 +216,9 @@
<version>1.2.7</version>
</dependency>
<dependency>
<groupId>org.apache.solr</groupId>
<artifactId>solr-langdetect</artifactId>
<version>${project.version}</version>
<groupId>com.cybozu.labs</groupId>
<artifactId>langdetect</artifactId>
<version>1.1-20120112</version>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
@ -625,20 +625,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<executions>
<execution>
<id>install-langdetect</id>
<phase>install</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<groupId>org.apache.solr</groupId>
<artifactId>solr-langdetect</artifactId>
<version>${project.version}</version>
<packaging>jar</packaging>
<file>solr/contrib/langid/lib/langdetect-c51112119be53a81e59706ce57bacaa90c052284.jar</file>
</configuration>
</execution>
</executions>
</plugin>
</plugins>

View File

@ -76,8 +76,8 @@
<artifactId>jsonic</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>solr-langdetect</artifactId>
<groupId>com.cybozu.labs</groupId>
<artifactId>langdetect</artifactId>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>

View File

@ -31,12 +31,6 @@
<path refid="solr.base.classpath"/>
</path>
<dirname file="${ant.file.solr-langid}" property="solr-langid.dir"/>
<target name="dist-maven" depends="common-solr.dist-maven">
<m2-deploy-with-pom-template pom.xml="${solr-langid.dir}/lib/langdetect-pom.xml.template"
jar.file="${solr-langid.dir}/lib/langdetect-c51112119be53a81e59706ce57bacaa90c052284.jar" />
</target>
<!-- we don't actually need to compile this thing, we just want its libs -->
<target name="resolve-extraction-libs">
<ant dir="${common-solr.dir}/contrib/extraction" target="resolve" inheritAll="false">

View File

@ -19,9 +19,7 @@
<ivy-module version="2.0">
<info organisation="org.apache.solr" module="langid"/>
<dependencies>
<dependency org="langdetect" name="langdetect" rev="c51112119be53a81e59706ce57bacaa90c052284">
<artifact name="langdetect" type="jar" url="http://language-detection.googlecode.com/git-history/c51112119be53a81e59706ce57bacaa90c052284/lib/langdetect.jar"/>
</dependency>
<dependency org="com.cybozu.labs" name="langdetect" rev="1.1-20120112" transitive="false"/>
<dependency org="net.arnx" name="jsonic" rev="1.2.7" transitive="false"/>
<exclude org="*" ext="*" matcher="regexp" type="${ivy.exclude.types}"/>
</dependencies>

View File

@ -1,36 +0,0 @@
<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.
-->
<parent>
<groupId>org.apache.solr</groupId>
<artifactId>solr-parent</artifactId>
<version>@version@</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.solr</groupId>
<artifactId>solr-langdetect</artifactId>
<name>Solr Specific langdetect</name>
<version>@version@</version>
<description>Solr Specific langdetect r111</description>
<packaging>jar</packaging>
</project>