Changes between Version 16 and Version 17 of DevelopersGuide/Compiling


Ignore:
Timestamp:
2016-12-29T13:56:27+01:00 (9 years ago)
Author:
skyper
Comment:

format and language

Legend:

Unmodified
Added
Removed
Modified
  • DevelopersGuide/Compiling

    v16 v17  
     1[[PageOutline(1-10)]]
     2
     3= Developers Guide =
     4
    15This page describes how to compile the Java source code in IDE in order to get a runnable `josm-custom.jar` file.
    26
     
    4751Example install for Ubuntu Linux:
    4852{{{
    49 sudo apt-get install ant openjdk-8-jdk junit
    50 # please install these ahead, you definitely need them
     53sudo apt-get install ant openjdk-8-jdk junit    # please install these ahead, you definitely need them
    5154}}}
    5255
     
    5457The quickest way to run the tests is done using the 'ant' build system. 
    5558{{{
    56 ant clean test   # this will run through all 200+ tests marking them suucessful, failure, in error, or skipped. 
     59ant clean test   # this will run through all 200+ tests marking them sucessful, failure, in error, or skipped. 
    5760}}}
    5861
     
    6265#!sh
    6366export 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.
     67export TESTCP=$TESTCP:"tools/*:tools/findbugs/*"   # added these missing directories. Without it will fail to run.
    6568}}}
    66 Here are some the build and run instructions for some example tests:
     69Here are a few build and run instructions for some example tests:
    6770{{{
    6871#!sh