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
|
@ -245,6 +245,12 @@ Other Changes
|
|||
lucene-analyzers-2.2.0.jar -- includes support for German, Chinese,
|
||||
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 ==================
|
||||
|
||||
|
|
|
@ -571,7 +571,7 @@
|
|||
</lib>
|
||||
<lib dir="${dist}">
|
||||
<include name="${fullnamever}.jar" />
|
||||
<include name="${fullnamever}-common.jar" />
|
||||
<include name="${fullname}-common-${version}.jar" />
|
||||
</lib>
|
||||
<fileset dir="${src}/webapp/resources" />
|
||||
<metainf dir="${basedir}" includes="LICENSE.txt,NOTICE.txt"/>
|
||||
|
@ -589,7 +589,7 @@
|
|||
|
||||
<!-- package the common classes together -->
|
||||
<solr-jar
|
||||
destfile="${dist}/${fullnamever}-common.jar"
|
||||
destfile="${dist}/${fullname}-common-${version}.jar"
|
||||
basedir="${dest}/common" />
|
||||
|
||||
</target>
|
||||
|
@ -600,7 +600,7 @@
|
|||
depends="compile-solrj, dist-jar">
|
||||
<mkdir dir="${dist}" />
|
||||
<solr-jar
|
||||
destfile="${dist}/${fullnamever}-solrj.jar"
|
||||
destfile="${dist}/${fullname}-solrj-${version}.jar"
|
||||
basedir="${dest}/client/solrj" />
|
||||
|
||||
<mkdir dir="${dist}/solrj-lib" />
|
||||
|
|
Loading…
Reference in New Issue