1
0
mirror of https://github.com/Rogiel/torrent4j synced 2025-12-06 07:32:47 +00:00

Change-Id: I0f4f7ffe65dcfbaaaa792ebb43566c7d07c7569d

This commit is contained in:
rogiel
2011-04-27 21:55:23 -03:00
commit e9684fcdfd
104 changed files with 10553 additions and 0 deletions

28
pom.xml Normal file
View File

@@ -0,0 +1,28 @@
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.bittorrent</groupId>
<artifactId>bittorrent-java</artifactId>
<version>1.0.0-alpha</version>
<name>Java Bittorrent Library</name>
<description>Download and upload torrents with this embeddable library!</description>
<repositories>
<repository>
<id>repository.jboss.org</id>
<url>https://repository.jboss.org/nexus/content/repositories/releases/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.jboss.netty</groupId>
<artifactId>netty</artifactId>
<version>3.2.4.Final</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>