mirror of https://github.com/apache/lucene.git
SOLR-411: Rename JARs produced to defacto standard names (contributed by Grant Ingersoll)
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@594936 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8de85b8a38
commit
c130be21ca
|
@ -244,7 +244,13 @@ Other Changes
|
||||||
Also: new Factories for all Tokenizers and TokenFilters provided by the
|
Also: new Factories for all Tokenizers and TokenFilters provided by the
|
||||||
lucene-analyzers-2.2.0.jar -- includes support for German, Chinese,
|
lucene-analyzers-2.2.0.jar -- includes support for German, Chinese,
|
||||||
Russan, Dutch, Greek, Brazilian, Thai, and French. (hossman)
|
Russan, Dutch, Greek, Brazilian, Thai, and French. (hossman)
|
||||||
|
|
||||||
|
Build
|
||||||
|
1. SOLR-411. Changed the names of the Solr JARs to use the defacto standard JAR names based on
|
||||||
|
project-name-version.jar. This yields, for example:
|
||||||
|
apache-solr-common-1.3-dev.jar
|
||||||
|
apache-solr-solrj-1.3-dev.jar
|
||||||
|
apache-solr-1.3-dev.jar
|
||||||
|
|
||||||
================== Release 1.2, 20070602 ==================
|
================== Release 1.2, 20070602 ==================
|
||||||
|
|
||||||
|
|
|
@ -571,7 +571,7 @@
|
||||||
</lib>
|
</lib>
|
||||||
<lib dir="${dist}">
|
<lib dir="${dist}">
|
||||||
<include name="${fullnamever}.jar" />
|
<include name="${fullnamever}.jar" />
|
||||||
<include name="${fullnamever}-common.jar" />
|
<include name="${fullname}-common-${version}.jar" />
|
||||||
</lib>
|
</lib>
|
||||||
<fileset dir="${src}/webapp/resources" />
|
<fileset dir="${src}/webapp/resources" />
|
||||||
<metainf dir="${basedir}" includes="LICENSE.txt,NOTICE.txt"/>
|
<metainf dir="${basedir}" includes="LICENSE.txt,NOTICE.txt"/>
|
||||||
|
@ -589,7 +589,7 @@
|
||||||
|
|
||||||
<!-- package the common classes together -->
|
<!-- package the common classes together -->
|
||||||
<solr-jar
|
<solr-jar
|
||||||
destfile="${dist}/${fullnamever}-common.jar"
|
destfile="${dist}/${fullname}-common-${version}.jar"
|
||||||
basedir="${dest}/common" />
|
basedir="${dest}/common" />
|
||||||
|
|
||||||
</target>
|
</target>
|
||||||
|
@ -600,7 +600,7 @@
|
||||||
depends="compile-solrj, dist-jar">
|
depends="compile-solrj, dist-jar">
|
||||||
<mkdir dir="${dist}" />
|
<mkdir dir="${dist}" />
|
||||||
<solr-jar
|
<solr-jar
|
||||||
destfile="${dist}/${fullnamever}-solrj.jar"
|
destfile="${dist}/${fullname}-solrj-${version}.jar"
|
||||||
basedir="${dest}/client/solrj" />
|
basedir="${dest}/client/solrj" />
|
||||||
|
|
||||||
<mkdir dir="${dist}/solrj-lib" />
|
<mkdir dir="${dist}/solrj-lib" />
|
||||||
|
|
Loading…
Reference in New Issue