Changeset 7351 in josm


Ignore:
Timestamp:
2014-07-31T12:36:48+02:00 (10 years ago)
Author:
Don-vip
Message:

fix #10325 - WMS not working if JOSM compiled with dist-optimized:

  • fix build
  • update to Proguard 4.11
  • disable "Sun internal API" warnings introduced recently
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r7331 r7351  
    237237            <compilerarg value="-Xlint:try"/>
    238238            <compilerarg value="-Xlint:unchecked"/>
     239                <!-- Undocumented argument to ignore "Sun internal proprietary API" warning, see http://stackoverflow.com/a/13862308/2257172 -->
     240            <compilerarg value="-XDignore.symbol.file"/>
    239241        </javac>
    240242        <copy todir="build" failonerror="no" includeemptydirs="no">
     
    426428                -keep class * extends org.openstreetmap.josm.io.FileImporter
    427429                -keep class * extends org.openstreetmap.josm.io.FileExporter
    428                 -keep class org.openstreetmap.josm.data.imagery.types.Adapter1
     430                -keep class org.w3._2001.xmlschema.Adapter1
    429431                -keep class org.openstreetmap.josm.actions.search.SearchCompiler$Never
    430432
     
    439441                }
    440442
    441                 # 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
     443                # Disable annoying [proguard] Note: the configuration keeps the entry point '...', but not the descriptor class '...'.
     444                # This note should not be a problem as we don't use obfuscation
    442445                -dontnote
    443446        </proguard>
Note: See TracChangeset for help on using the changeset viewer.