summaryrefslogtreecommitdiff
path: root/src/src/site/apt/building.apt
diff options
context:
space:
mode:
Diffstat (limited to 'src/src/site/apt/building.apt')
-rw-r--r--src/src/site/apt/building.apt39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/src/site/apt/building.apt b/src/src/site/apt/building.apt
new file mode 100644
index 0000000..a091378
--- /dev/null
+++ b/src/src/site/apt/building.apt
@@ -0,0 +1,39 @@
+ ------
+ jline
+ ------
+
+Building JLine
+
+ Building JLine requires an installation of {{{http://maven.apache.org/}Maven 2}}.
+
+ Source code is included in the JLine distribution, or can be checked out from CVS as described {{{source-repository.html}here}}.
+
+Maven Repository
+
+ If you are using Maven 2, you can add JLine as an automatic dependency by adding the following to your project's pom.xml file:
+
++--------------------------------+
+
+ <repositories>
+ ...
+ <repository>
+ <id>jline</id>
+ <name>JLine Project Repository</name>
+ <url>http://jline.sourceforge.net/m2repo</url>
+ </repository>
+ </repositories>
+ <dependencies>
+ ...
+ <dependency>
+ <groupId>jline</groupId>
+ <artifactId>jline</artifactId>
+ <version>0.9.9</version>
+ </dependency>
+ </dependencies>
+
++--------------------------------+
+
+
+
+
+