I would like to know how to run JarJar with Ant, passing the rules in with an external Rules file.
1) I know I can pass the rules in one by one as below:
<jarjar destfile="B.jar" >
<zipfileset src="A.jar" />
<rule pattern="com.a.**" result="test.b.@1" />
</jarjar>
2) I know I can pass the rules in a file if I run it from the command line:
java -jar jarjar.jar process <rulesFile> <inJar> <outJar>
3) I can use the above command line in an Ant <exec> task. (best workaround)
4) I found some reference to using a <rulesFile> tag in Maven.
The above options are not ideal for what I would like to do.
I want to run JarJar from an Ant task, passing in a rules file.
I have been unable to get any information about this, from any forum, or by mailing the developers of JarJar, so I have decided to answer this question with a workaround that I am using:
As an example, the below
build.xmlfile includes the contents of anothertest.txtfile inline. I import the text file using the taginclude_this(this is my name – you can use any name here):In this simple example, the contents of the
test.txtfile is:So I’ve been using this workaround to replace the rules in the
jarjarcall. Putting the rules in thetest.txtfile:My
jarjarcall then becomes: