mirror of
https://github.com/Rogiel/torrent4j
synced 2025-12-06 07:32:47 +00:00
28 lines
921 B
XML
28 lines
921 B
XML
<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> |