mirror of https://github.com/apache/lucene.git
changed generate-maven-artifacts target to place all maven artifacts in one place: modules/dist/maven/; added modules/dist/ to list of dirs to remove with the 'clean' target; added modules/dist/ to svn:ignore list on modules/
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1062308 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c76ffeaa70
commit
11146b8c3c
|
@ -25,7 +25,6 @@
|
|||
|
||||
<property name="build.dir" location="../build/common" />
|
||||
<property name="dist.dir" location="../dist/common" />
|
||||
<property name="maven.dist.dir" location="../dist/maven" />
|
||||
|
||||
<import file="../../../lucene/contrib/contrib-build.xml"/>
|
||||
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
|
||||
<property name="build.dir" location="../build/smartcn" />
|
||||
<property name="dist.dir" location="../dist/smartcn" />
|
||||
<property name="maven.dist.dir" location="../dist/maven" />
|
||||
|
||||
<import file="../../../lucene/contrib/contrib-build.xml"/>
|
||||
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
|
||||
<property name="build.dir" location="../build/stempel" />
|
||||
<property name="dist.dir" location="../dist/stempel" />
|
||||
<property name="maven.dist.dir" location="../dist/maven" />
|
||||
|
||||
<import file="../../../lucene/contrib/contrib-build.xml"/>
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
<property name="build.dir" location="build/" />
|
||||
<property name="dist.dir" location="dist/" />
|
||||
<property name="maven.dist.dir" location="dist/maven" />
|
||||
<property name="maven.dist.dir" location="../dist/maven" />
|
||||
|
||||
<import file="../../lucene/contrib/contrib-build.xml"/>
|
||||
<property name="working.dir" location="work"/>
|
||||
|
|
|
@ -57,7 +57,6 @@
|
|||
<target name="generate-maven-artifacts" description="Generate Maven Artifacts for Modules">
|
||||
<sequential>
|
||||
<ant target="get-maven-poms" inheritAll="false" dir=".."/>
|
||||
|
||||
<subant target="dist-maven" inheritall="false" failonerror="true">
|
||||
<fileset dir="analysis" includes="build.xml" />
|
||||
<fileset dir="benchmark" includes="build.xml" />
|
||||
|
@ -67,6 +66,7 @@
|
|||
|
||||
<target name="clean" description="Clean all modules">
|
||||
<sequential>
|
||||
<delete dir="dist"/>
|
||||
<subant target="clean" inheritall="false" failonerror="true">
|
||||
<fileset dir="analysis" includes="build.xml" />
|
||||
<fileset dir="benchmark" includes="build.xml" />
|
||||
|
|
Loading…
Reference in New Issue