-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBUILD
24 lines (20 loc) · 859 Bytes
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
These are the build instructions for JHilbert.
Prerequisites
=============
You'll need the Apache Maven 2 project builder (version 2.0.9 works), see
http://maven.apache.org/. You'll also need a Java Development Kit (JDK)
compatible with Maven which supports Java Generics (Sun JDK 6-12-1 works).
Building
========
In the project's root directory (that's the directory with the pom.xml file
in it), run
mvn package
and a ready-to-use JAR file will be generated in the target/ subdirectory.
Note that maven will pull in many dependencies automatically from the internet
when you run it for the first time. You can also generate site documentation
in target/site/ by running
mvn site
The site documentation is still *very* sparse (as of September 2008).
The JAR is a runnable jar. For example,
java -jar target/jhilbert-8.jar
will print a usage message.