Fixed dist-maven dependencies to be (jar-core,jar-src,javadocs) (since those are the artifacts to be copied and rechristened as maven artifacts). Not sure why this ever worked before as (compile-core,jar-src)... The new facet module was failing on 'ant generate-maven-artifacts' (from a clean'd checkout); this change fixes the problem.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1141395 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Rowe 2011-06-30 05:02:36 +00:00
parent f69dedc1d2
commit 0fbde9db5c
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@
property="pom.xml.present">
</available>
<target name="dist-maven" if="pom.xml.present" depends="compile-core, jar-src">
<target name="dist-maven" if="pom.xml.present" depends="jar-core, jar-src, javadocs">
<taskdef resource="org/apache/maven/artifact/ant/antlib.xml"
uri="antlib:org.apache.maven.artifact.ant"
classpathref="maven-ant-tasks.classpath"/>