forked from mpetazzoni/ttorrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL
39 lines (25 loc) · 1015 Bytes
/
INSTALL
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
33
34
35
36
37
38
39
Howto build and use the BitTorrent library
==========================================
Dependencies
------------
This Java implementation of the BitTorrent protocol implements a BitTorrent
tracker (an HTTP service), and a BitTorrent client. The only dependencies of
the BitTorrent library are:
* the log4j library
* the slf4j logging library
* the SimpleHTTPFramework
These libraries are provided in the lib/ directory, and are automatically
included in the JAR file created by the build process.
Building the distribution JAR
-----------------------------
Simply execute the following command:
$ ant dist
To build the library's JAR file (in the dist/ directory). You can then import
this JAR file into your Java project and start using the Java BitTorrent
library.
Building the documentation
--------------------------
You can build the library's Javadoc with the following command:
$ ant doc
This will build the Javadoc in the doc/ directory. Make sure Javadoc is
installed on your system first.