-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
32 lines (17 loc) · 909 Bytes
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
1. Building
This project is built using maven 3.0.x and requires Java SE 6 (or newer).
Before building the project for the first time, you will need to add the "timestools.jar" library to your local mvn repository. You can do this by running this script:
<projectdir>/lib/add2mvn.sh
To build the project run this maven command:
mvn package assembly:single [-DskipTests]
Use the optional -DskipTests argument to skip test failures, and prevent them from halting the build.
This will create a directory:
<projectdir>/target/hdpa-<version>-dist
This contains a fully packaged, runnable version of the project.
2. Running programs
To run any of the programs in the project,
cd <projectdir>/target/hdpa-<version>-dist
and then run
run.sh <main-class> <args>
For detailed information on all the programs available, arguments, etc.,
refer to the documentation in the appendices to thesis.pdf.