Changes between Version 23 and Version 24 of DevelopersGuide/Compiling


Ignore:
Timestamp:
2017-12-27T21:14:39+01:00 (8 years ago)
Author:
holgermappt
Comment:

findbugs was replaced by spotbugs.

Legend:

Unmodified
Added
Removed
Modified
  • DevelopersGuide/Compiling

    v23 v24  
    6565#!sh
    6666export TESTCP=".:test/unit:test/functional:dist/josm-custom.jar:test/lib/commons-testing/*:test/lib/fest/*:test/lib/junit/*:test/lib/*:test/lib/unitils-core/*"
    67 export TESTCP=$TESTCP:"tools/*:tools/findbugs/*"   # added these missing directories. Without it will fail to run.
     67export TESTCP=$TESTCP:"tools/*:tools/spotbugs/*"   # added these missing directories. Without it will fail to run.
    6868}}}
    6969Here are a few build and run instructions for some example tests:
     
    8282{{{
    8383#!sh
    84 set TESTCP=".;test/unit;test/functional;dist/josm-custom.jar;test/lib/commons-testing/*;test/lib/fest/*;test/lib/junit/*;test/lib/*;test/lib/unitils-core/*;tools/*;tools/findbugs/*"
     84set TESTCP=".;test/unit;test/functional;dist/josm-custom.jar;test/lib/commons-testing/*;test/lib/fest/*;test/lib/junit/*;test/lib/*;test/lib/unitils-core/*;tools/*;tools/spotbugs/*"
    8585javac -cp %TESTCP% test/unit/org/openstreetmap/josm/data/projection/ProjectionRefTest.java
    8686java -cp %TESTCP% org.junit.runner.JUnitCore org.openstreetmap.josm.data.projection.ProjectionRefTest