Changes between Version 1 and Version 2 of InstallNotes
- Timestamp:
- 2006-07-18T15:34:32+02:00 (20 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallNotes
v1 v2 8 8 JOSM 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] 9 9 10 svn co http:// www.eigenheimstrasse.de/svn/josm10 svn co http://josm.eigenheimstrasse.de/svn josm 11 11 12 12 ''Hint: If you don't like those funny ''`.svn`'' directories, use ''`svn export`'' instead of `svn co`'' 13 13 14 Or you can inspect single files over the web frontend at http:// www.eigenheimstrasse.de/svn/josm.14 Or you can inspect single files over the web frontend at http://josm.eigenheimstrasse.de/svn. 15 15 16 16 == Compiling == 17 17 To 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. 18 18 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.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 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. 20 20 21 21 As example, this could look like: … … 26 26 $ export JAVA_HOME=/usr/local/jdk1.5.0 27 27 $ cd josm/src 28 $ javac -cp .:../lib/MinML2.jar:../lib/metadata-extractor-2.3.1.jar org/openstreetmap/josm/gui/MainApplication.java28 $ javac -cp .:../lib/MinML2.jar:../lib/metadata-extractor-2.3.1.jar:../lib/gettext-common-0.9.jar org/openstreetmap/josm/gui/MainApplication.java 29 29 30 30 == Running ==
