[[TranslatedPages]] = Source code = This page contains information about the source code and compilation steps. 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]). == Get the source ==#Getthesource * From the official Subversion repository (recommended if you're interested in JOSM core only): {{{ #!sh svn co https://josm.openstreetmap.de/svn/trunk josm }}} * From the former OSM Subversion repository (recommended if you're also interested in plugins): {{{ #!sh svn co https://josm.openstreetmap.de/osmsvn/applications/editors/josm }}} * JMapViewer from the former OSM Subversion repository {{{ #!sh svn co https://josm.openstreetmap.de/osmsvn/applications/viewer/jmapviewer/ }}} * If the old URL https://svn.openstreetmap.org/applications/editors/josm is used, then go to the working copy and call {{{svn relocate}}} with the new URL. * From the unofficial [https://github.com/JOSM/josm GitHub mirror]: {{{ #!sh git clone https://github.com/JOSM/josm.git }}} * From the unofficial [https://github.com/JOSM/josm-plugins josm-plugins GitHub mirror]: {{{#!sh # We are effectively replicating the directory hierarchy of the JOSM svn repository so that the plugins can be built. mkdir josm && cd josm git clone git://github.com/JOSM/josm-plugins.git plugins # This is needed for building most plugins. git clone https://github.com/JOSM/josm.git core ln -s core/tools plugins/00_core_tools ln -s core/test/lib plugins/00_core_test_lib ln -s core/test/config plugins/00_core_test_config }}} == Compile source code == === Compiling using Ant ===#CompilingusingAnt The easiest way to compile JOSM, provided [https://adoptopenjdk.net/ OpenJDK] and [https://ant.apache.org/ Ant] on your machine are properly set up, is to go to the {{{josm}}} directory and type: {{{ #!sh ant clean dist }}} That will create a `dist/josm-custom.jar` file if successful. === Compiling using IDE & running tests === → [[DevelopersGuide/Compiling]]