summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml14
1 files changed, 13 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 7b49544447..e0b2f353e1 100644
--- a/build.xml
+++ b/build.xml
@@ -279,6 +279,10 @@ TODO:
<dependency groupId="com.googlecode.jarjar" artifactId="jarjar" version="1.3"/>
</artifact:dependencies>
+ <artifact:dependencies pathId="jarlister.classpath">
+ <dependency groupId="com.github.rjolly" artifactId="jarlister_2.11" version="1.0"/>
+ </artifact:dependencies>
+
<!-- JUnit -->
<property name="junit.version" value="4.11"/>
<artifact:dependencies pathId="junit.classpath" filesetId="junit.fileset">
@@ -867,6 +871,11 @@ TODO:
<path refid="aux.libs"/>
</path>
+ <path id="pack.lib.path">
+ <pathelement location="${library.jar}"/>
+ <path refid="jarlister.classpath"/>
+ </path>
+
<path id="pack.bin.tool.path">
<pathelement location="${library.jar}"/>
<pathelement location="${xml.jar}"/>
@@ -1230,7 +1239,10 @@ TODO:
<!-- ===========================================================================
PACKED QUICK BUILD (PACK)
============================================================================ -->
- <target name="pack.lib" depends="quick.lib, forkjoin.done"> <staged-pack project="library"/></target>
+ <target name="pack.lib" depends="quick.lib, forkjoin.done"> <staged-pack project="library"/>
+ <taskdef resource="scala/tools/ant/antlib.xml" classpathref="pack.lib.path"/>
+ <jarlister file="${library.jar}"/>
+ </target>
<target name="pack.reflect" depends="quick.reflect"> <staged-pack project="reflect"/> </target>