Download ttorrent-1.4.jar file

Introduction

You can download ttorrent-1.4.jar in this page.

License

Apache Software License version 2.0

Type List

ttorrent-1.4.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.turn/ttorrent/pom.properties
META-INF/maven/com.turn/ttorrent/pom.xml
com.turn.ttorrent.bcodec.BDecoder.class
com.turn.ttorrent.bcodec.BEValue.class
com.turn.ttorrent.bcodec.BEncoder.class
com.turn.ttorrent.bcodec.InvalidBEncodingException.class
com.turn.ttorrent.cli.ClientMain.class
com.turn.ttorrent.cli.TorrentMain.class
com.turn.ttorrent.cli.TrackerMain.class
com.turn.ttorrent.client.Client.class
com.turn.ttorrent.client.ConnectionHandler.class
com.turn.ttorrent.client.Handshake.class
com.turn.ttorrent.client.IncomingConnectionListener.class
com.turn.ttorrent.client.Piece.class
com.turn.ttorrent.client.SharedTorrent.class
com.turn.ttorrent.client.announce.Announce.class
com.turn.ttorrent.client.announce.AnnounceException.class
com.turn.ttorrent.client.announce.AnnounceResponseListener.class
com.turn.ttorrent.client.announce.HTTPTrackerClient.class
com.turn.ttorrent.client.announce.TrackerClient.class
com.turn.ttorrent.client.announce.UDPTrackerClient.class
com.turn.ttorrent.client.peer.MessageListener.class
com.turn.ttorrent.client.peer.PeerActivityListener.class
com.turn.ttorrent.client.peer.PeerExchange.class
com.turn.ttorrent.client.peer.Rate.class
com.turn.ttorrent.client.peer.SharingPeer.class
com.turn.ttorrent.client.storage.FileCollectionStorage.class
com.turn.ttorrent.client.storage.FileStorage.class
com.turn.ttorrent.client.storage.TorrentByteStorage.class
com.turn.ttorrent.common.Peer.class
com.turn.ttorrent.common.Torrent.class
com.turn.ttorrent.common.protocol.PeerMessage.class
com.turn.ttorrent.common.protocol.TrackerMessage.class
com.turn.ttorrent.common.protocol.http.HTTPAnnounceRequestMessage.class
com.turn.ttorrent.common.protocol.http.HTTPAnnounceResponseMessage.class
com.turn.ttorrent.common.protocol.http.HTTPTrackerErrorMessage.class
com.turn.ttorrent.common.protocol.http.HTTPTrackerMessage.class
com.turn.ttorrent.common.protocol.udp.UDPAnnounceRequestMessage.class
com.turn.ttorrent.common.protocol.udp.UDPAnnounceResponseMessage.class
com.turn.ttorrent.common.protocol.udp.UDPConnectRequestMessage.class
com.turn.ttorrent.common.protocol.udp.UDPConnectResponseMessage.class
com.turn.ttorrent.common.protocol.udp.UDPTrackerErrorMessage.class
com.turn.ttorrent.common.protocol.udp.UDPTrackerMessage.class
com.turn.ttorrent.tracker.TrackedPeer.class
com.turn.ttorrent.tracker.TrackedTorrent.class
com.turn.ttorrent.tracker.Tracker.class
com.turn.ttorrent.tracker.TrackerService.class

Pom

ttorrent-1.4.pom file content.

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>

	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
		<relativePath />
	</parent>

	<name>Java BitTorrent library</name>
	<description>
		ttorrent is a pure-Java implementation of the BitTorrent protocol,
		including support for several BEPs. It also provides a standalone client,
		a tracker and a torrent manipulation utility.
	</description>
	<url>http://mpetazzoni.github.io/ttorrent/</url>
	<groupId>com.turn</groupId>
	<artifactId>ttorrent</artifactId>
	<version>1.4</version>
	<packaging>jar</packaging>

	<scm>
		<connection>scm:git:git://github.com/mpetazzoni/ttorrent.git</connection>
		<developerConnection>scm:git:ssh://git@github.com/mpetazzoni/ttorrent.git</developerConnection>
		<url>http://github.com/mpetazzoni/ttorrent</url>
		<tag>ttorrent-1.4</tag>
	</scm>

	<licenses>
		<license>
			<name>Apache Software License version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
		</license>
	</licenses>

	<issueManagement>
		<system>GitHub</system>
		<url>https://github.com/mpetazzoni/ttorrent/issues</url>
	</issueManagement>

	<developers>
		<developer>
			<id>mpetazzoni</id>
			<name>Maxime Petazzoni</name>
			<email>maxime.petazzoni@bulix.org</email>
			<url>http://www.bulix.org</url>
			<organization>SignalFuse, Inc</organization>
			<organizationUrl>http://www.signalfuse.com</organizationUrl>
			<roles>
				<role>maintainer</role>
				<role>architect</role>
				<role>developer</role>
			</roles>
			<timezone>-8</timezone>
			<properties>
				<picUrl>https://secure.gravatar.com/avatar/6f705e0c299bca294444de3a6a3308b3</picUrl>
			</properties>
		</developer>
	</developers>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>

	<repositories>
		<repository>
			<id>jboss-thirdparty-releases</id>
			<name>JBoss Thirdparty Releases</name>
			<url>https://repository.jboss.org/nexus/content/repositories/thirdparty-releases/</url>
		</repository>
	</repositories>

	<dependencies>
		<dependency>
			<groupId>commons-codec</groupId>
			<artifactId>commons-codec</artifactId>
			<version>1.8</version>
		</dependency>

		<dependency>
			<groupId>commons-io</groupId>
			<artifactId>commons-io</artifactId>
			<version>2.4</version>
		</dependency>

		<dependency>
			<groupId>org.simpleframework</groupId>
			<artifactId>simple</artifactId>
			<version>4.1.21</version>
		</dependency>

		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-log4j12</artifactId>
			<version>1.6.4</version>
		</dependency>

		<dependency>
			<groupId>org.testng</groupId>
			<artifactId>testng</artifactId>
			<version>6.1.1</version>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>net.sf</groupId>
			<artifactId>jargs</artifactId>
			<version>1.0</version>
		</dependency>
	</dependencies>

	<build>
		<defaultGoal>package</defaultGoal>
		<directory>${basedir}/build</directory>

		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.3.2</version>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
				</configuration>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<version>2.4</version>
				<configuration>
					<archive>
						<manifest>
							<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
						</manifest>
					</archive>
					<includes>
						<include>**</include>
					</includes>
				</configuration>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.8.1</version>
				<configuration>
					<reportOutputDirectory>${basedir}</reportOutputDirectory>
					<destDir>doc</destDir>
				</configuration>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-release-plugin</artifactId>
				<version>2.4.2</version>
			</plugin>

			<plugin>
				<artifactId>maven-shade-plugin</artifactId>
				<version>2.1</version>
				<executions>
					<execution>
						<phase>package</phase>
						<goals>
							<goal>shade</goal>
						</goals>
						<configuration>
							<outputFile>${project.build.directory}/${project.artifactId}-${project.version}-shaded.jar</outputFile>
							<transformers>
								<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
									<manifestEntries>
										<Main-Class>com.turn.ttorrent.cli.ClientMain</Main-Class>
									</manifestEntries>
								</transformer>
							</transformers>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
</project>

POM Entry

<dependency>
   <groupId>com.turn</groupId>
   <artifactId>ttorrent</artifactId>
   <version>1.4</version>
</dependency>

Download

If you think the following ttorrent-1.4.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download ttorrent-1.4.jar file




PreviousNext

Related