]> git.evergreen-ils.org Git - working/Hatch.git/blob - README.linux
Hatch logging properties file / print fixes
[working/Hatch.git] / README.linux
1 Hatch Developer Install Notes
2
3 1. Download JDK 8 from Oracle
4
5     1.a Go here, accept the license, and download the Linux .tar.gz:
6
7     http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
8
9     1.b Extract the file and link it into place where run.sh can find it.
10
11     $ tar -zxf jdk*tar.gz
12     $ ln -s jdk1.8* jdk1.8
13
14     NOTE: We may some day use openjdk, but its JavaFX libs are not ready
15     for prime time as of writing.  
16
17 2. Get the org.json library
18
19     $ mkdir -p lib
20     $ cd lib
21     $ wget -O json-20160810.jar \
22         'https://search.maven.org/remotecontent?filepath=org/json/json/20160810/json-20160810.jar'
23     $ cd ../
24
25 3. Compile, test, run.
26
27 $ ./run.sh compile
28
29 $ ./run.sh test
30
31 $ ./run.sh run
32
33