blob: d33121eee615d035227ee0eddecb00ece6a9084c [file] [log] [blame]
22301080a0334732025-05-17 21:38:32 +08001Howto build and use the BitTorrent library
2==========================================
3
4Dependencies
5------------
6
7This Java implementation of the BitTorrent protocol implements a BitTorrent
8tracker (an HTTP service), and a BitTorrent client. The only dependencies of
9the BitTorrent library are:
10
11* the log4j library
12* the slf4j logging library
13* the SimpleHTTPFramework
14
15These libraries are provided in the lib/ directory, and are automatically
16included in the JAR file created by the build process.
17
18
19Building the distribution JAR
20-----------------------------
21
22Simply execute the following command:
23
24 $ mvn package
25
26To build the library's JAR file (in the target/ directory). You can then import
27this JAR file into your Java project and start using the Java BitTorrent
28library.