Changes between Version 16 and Version 17 of DevelopersGuide/Compiling
- Timestamp:
- 2016-12-29T13:56:27+01:00 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevelopersGuide/Compiling
v16 v17 1 [[PageOutline(1-10)]] 2 3 = Developers Guide = 4 1 5 This page describes how to compile the Java source code in IDE in order to get a runnable `josm-custom.jar` file. 2 6 … … 47 51 Example install for Ubuntu Linux: 48 52 {{{ 49 sudo apt-get install ant openjdk-8-jdk junit 50 # please install these ahead, you definitely need them 53 sudo apt-get install ant openjdk-8-jdk junit # please install these ahead, you definitely need them 51 54 }}} 52 55 … … 54 57 The quickest way to run the tests is done using the 'ant' build system. 55 58 {{{ 56 ant clean test # this will run through all 200+ tests marking them su ucessful, failure, in error, or skipped.59 ant clean test # this will run through all 200+ tests marking them sucessful, failure, in error, or skipped. 57 60 }}} 58 61 … … 62 65 #!sh 63 66 export TESTCP=".:test/unit:test/functional:dist/josm-custom.jar:test/lib/fest/*:test/lib/junit/*:test/lib/*:test/lib/unitils-core/*" 64 export TESTCP=$TESTCP:"tools/*:tools/findbugs/*" # added these missing directories. Without it will fail to run.67 export TESTCP=$TESTCP:"tools/*:tools/findbugs/*" # added these missing directories. Without it will fail to run. 65 68 }}} 66 Here are some thebuild and run instructions for some example tests:69 Here are a few build and run instructions for some example tests: 67 70 {{{ 68 71 #!sh
