Changeset 4730 in josm
- Timestamp:
- 2011-12-28T15:21:00+01:00 (13 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r4728 r4730 199 199 -dontobfuscate 200 200 201 # These options probably are not necessary (and make processing a bit slower) 201 202 -dontskipnonpubliclibraryclasses 203 -dontskipnonpubliclibraryclassmembers 202 204 203 205 -keepclasseswithmembers public class org.openstreetmap.josm.gui.MainApplication { 204 206 public static void main(java.lang.String[]); 205 207 } 208 -keepclasseswithmembers public class org.openstreetmap.josm.gui.MainApplet 206 209 207 210 -keep class JOSM 208 211 -keep class * extends org.openstreetmap.josm.io.FileImporter 209 212 -keep class * extends org.openstreetmap.josm.io.FileExporter 210 -keep class org.openstreetmap.josm.actions.search.SearchCompiler$Never 213 -keep class org.openstreetmap.josm.data.imagery.types.Adapter1 214 -keep class org.openstreetmap.josm.actions.search.SearchCompiler$Never 211 215 212 216 -keepclassmembers enum * { … … 215 219 } 216 220 221 # Keep unused public methods (can be useful for plugins) 217 222 -keepclassmembers class * { 218 223 public protected *; 219 224 } 225 226 # Disable annoying [proguard] Note: the configuration keeps the entry point '...', but not the descriptor class '...'. This notes should not be a problem as we don't use obfuscation 227 -dontnote 220 228 </proguard> 221 229 </target>
Note:
See TracChangeset
for help on using the changeset viewer.