Changes between Version 1 and Version 2 of InstallNotes


Ignore:
Timestamp:
2006-07-18T15:34:32+02:00 (20 years ago)
Author:
imi
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallNotes

    v1 v2  
    88JOSM is available under GPL, and so of course you can get the sources and compile, modify or redistribute it by yourself. You can grab the sources via [http://subversion.tigris.org subversion]
    99
    10  svn co http://www.eigenheimstrasse.de/svn/josm
     10 svn co http://josm.eigenheimstrasse.de/svn josm
    1111
    1212''Hint: If you don't like those funny ''`.svn`'' directories, use ''`svn export`'' instead of `svn co`''
    1313
    14 Or you can inspect single files over the web frontend at http://www.eigenheimstrasse.de/svn/josm.
     14Or you can inspect single files over the web frontend at http://josm.eigenheimstrasse.de/svn.
    1515
    1616== Compiling ==
    1717To build the source the most easy way, use eclipse and the provided `.project` and `.classpath` file. Just add a new Java Project using the JOSM source folder as existing path.
    1818
    19 You can also build it without eclipse. To do so, change into the `src/` folder and call `javac` on the file `org/openstreetmap/josm/Main` with `../lib/jdom.jar` in your classpath. If running linux, be sure to have your `JAVA_HOME` set.
     19You can also build it without eclipse. To do so, change into the `src/` folder and call `javac` on the file `org/openstreetmap/josm/Main` with all libs from `../lib/*.jar` in your classpath (you have to specify all subsequent). If running linux, be sure to have your `JAVA_HOME` set.
    2020
    2121As example, this could look like:
     
    2626 $ export JAVA_HOME=/usr/local/jdk1.5.0
    2727 $ cd josm/src
    28  $ javac -cp .:../lib/MinML2.jar:../lib/metadata-extractor-2.3.1.jar  org/openstreetmap/josm/gui/MainApplication.java
     28 $ javac -cp .:../lib/MinML2.jar:../lib/metadata-extractor-2.3.1.jar:../lib/gettext-common-0.9.jar org/openstreetmap/josm/gui/MainApplication.java
    2929
    3030== Running ==