• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 ------
2 jline
3 ------
4
5Download JLine
6
7 JLine packages can be downloaded from:
8
9 {{{http://sourceforge.net/project/showfiles.php?group_id=64033}http://sourceforge.net/project/showfiles.php?group_id=64033}}
10
11
12Maven Repository
13
14 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:
15
16+--------------------------------+
17
18    <repositories>
19        ...
20        <repository>
21            <id>jline</id>
22            <name>JLine Project Repository</name>
23            <url>http://jline.sourceforge.net/m2repo</url>
24        </repository>
25    </repositories>
26    <dependencies>
27        ...
28        <dependency>
29            <groupId>jline</groupId>
30            <artifactId>jline</artifactId>
31            <version>0.9.9</version>
32        </dependency>
33    </dependencies>
34
35+--------------------------------+
36
37
38
39
40