-
Seems to be a documentation problem: works if the parenthesis are left out, e.g.:
however, all the examples have parenthesis around the filter and the documentation also seems to suggest that they are always required.
2009-05-18 00:05:03 UTC in ProGuard Java Optimizer and Obfuscator
-
Input filtering doesn't seem to work with the injar tag when using a refid. E.g.: results in a lot of error messages about missingreferenced classes (all of which are to be found in the single JAR file I have in 'classpath'). I also tried putting the jar name (w/- & w/o the directory) in front of the above filtering...
2009-05-17 23:49:49 UTC in ProGuard Java Optimizer and Obfuscator
-
atleta added the jfreesafe-0.9.0-src.zip file.
2009-03-03 02:06:59 UTC in Free Safe
-
atleta added the jfreesafe-0.9.0.zip file.
2009-03-03 02:06:59 UTC in Free Safe
-
atleta added the jfreesafe-0.9.0-src.tar.gz file.
2009-03-03 02:06:59 UTC in Free Safe
-
atleta added the jfreesafe-0.9.0.tar.gz file.
2009-03-03 02:06:59 UTC in Free Safe
-
atleta created the 0.9.0 file release.
2009-03-02 01:24:39 UTC in Free Safe
-
Thanks for the answer, that's what I ended up doing. I also checked the build.xml files generated by netbeans/mobility pack and they also do the same.
Let me comment on this though... The way ProGuard handles this, with the single outjars option, is not really orthogonal and, at least to me, a bit confusing. Using proguard with ant I didn't expect proguard to repack the jars. Actually I...
2009-02-20 12:44:53 UTC in ProGuard Java Optimizer and Obfuscator
-
The examples say:
"-injars in1.jar
-injars in2.jar
-injars in3.jar
-outjars out
The input jars will then be reconstructed in the directory out, with their original names.".
2009-02-18 19:13:56 UTC in ProGuard Java Optimizer and Obfuscator
-
Sorry, I forgot to mention that I use ant and thus I pass in my jars as a classpath using a refid:
<proguard shrink="${obfuscate.shrink}"
obfuscate="${obfuscate.obfuscate}" usemixedcaseclassnames="off"
optimize="${obfuscate.optimize}" ignorewarnings="on" defaultpackage="">
<libraryjar...
2009-02-18 19:13:17 UTC in ProGuard Java Optimizer and Obfuscator