SOLR-7429: Remove Solr server module sync-hack introduced in SOLR-4050.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1674997 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2015-04-20 22:39:13 +00:00
parent fae5b46a20
commit d33eb8eb44
1 changed files with 6 additions and 19 deletions

View File

@ -36,30 +36,17 @@
<!-- nothing to cover -->
<target name="pitest"/>
<!-- a hack because we don't use sync-true since we have 3 different profiles.
we have these different profiles because each has a different artifact pattern.
this way we can rename servlet-api-xxxxxxxxxxxxxxxxxxx.jar -> lib/servlet-api-3.0.jar,
and rename jetty-start-xxxxxxxxxxxxx.jar -> start.jar (not in lib/) !
there is probably a cleaner way: but this ensure we have no garbage if jetty is upgraded -->
<target name="sync-hack" unless="solr.skip.sync-hack">
<delete failonerror="false">
<fileset dir="lib" includes="*.jar"/>
</delete>
</target>
<target name="resolve" depends="ivy-availability-check,ivy-fail,ivy-configure,sync-hack">
<target name="resolve" depends="ivy-availability-check,ivy-fail,ivy-configure">
<sequential>
<!-- jetty libs in lib/ -->
<ivy:retrieve conf="jetty" type="jar" log="download-only" symlink="${ivy.symlink}"/>
<ivy:retrieve conf="jetty,servlet" type="jar" log="download-only" symlink="${ivy.symlink}"
pattern="lib/[artifact]-[revision].[ext]" sync="true"/>
<ivy:retrieve conf="logging" type="jar,bundle" log="download-only" symlink="${ivy.symlink}"
pattern="lib/ext/[artifact]-[revision].[ext]"/>
<!-- start.jar -->
pattern="lib/ext/[artifact]-[revision].[ext]" sync="true"/>
<!-- start.jar - we don't use sync=true here, we don't own the dir, but
it's one jar with a constant name and we don't need it -->
<ivy:retrieve conf="start" type="jar" log="download-only" symlink="${ivy.symlink}"
pattern="start.jar"/>
<!-- servlet-api.jar -->
<ivy:retrieve conf="servlet" log="download-only" type="orbit" symlink="${ivy.symlink}"
pattern="lib/servlet-api-3.0.jar"/>
</sequential>
</target>