Changes between Version 17 and Version 21 of Source code


Ignore:
Timestamp:
(multiple changes)
Author:
(multiple changes)
Comment:
(multiple changes)

Legend:

Unmodified
Added
Removed
Modified
  • Source code

    v17 v21  
    44This page contains information about the source code and compilation steps.
    55
    6 Knowledge of Java is not necessary, some portions of the code are explained in comments. You can inspect single files over the web frontend at [/svn] (or [/browser]).
     6Knowledge of Java is not necessary, some portions of the code are explained in comments. You can inspect single files over the web frontend at [/svn] (or [source: web browser]).
    77
    88
     
    2828{{{
    2929#!sh
    30 git clone git://github.com/JOSM/josm.git
     30git clone https://github.com/JOSM/josm.git
     31}}}
     32 * From the unofficial [https://github.com/JOSM/josm-plugins josm-plugins GitHub mirror]:
     33{{{#!sh
     34# We are effectively replicating the directory hierarchy of the JOSM svn repository so that the plugins can be built.
     35mkdir josm && cd josm
     36git clone git://github.com/JOSM/josm-plugins.git plugins
     37# This is needed for building most plugins.
     38git clone https://github.com/JOSM/josm.git core
     39ln -s core/tools plugins/00_core_tools
     40ln -s core/test/lib plugins/00_core_test_lib
     41ln -s core/test/config plugins/00_core_test_config
    3142}}}
    3243
     
    4253That will create a `dist/josm-custom.jar` file if successful.
    4354
    44 === Compiling using IDE ===
    45 → [[DevelopersGuide/Compiling]]
     55=== Compiling using IDE & running tests ===
     56→ [[wikitr:/DevelopersGuide/Compiling]]