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

Scoring algorithm

This commit is contained in:
rogiel
2011-04-28 14:30:33 -03:00
parent 209cfb9deb
commit 6bf0be8fca
16 changed files with 498 additions and 92 deletions

30
pom.xml
View File

@@ -5,7 +5,7 @@
<artifactId>libtorrent</artifactId>
<packaging>jar</packaging>
<name>libtorrent</name>
<version>1.0</version>
<version>1.0.0-alpha2</version>
<description>Java library used for downloading and uploading torrent files</description>
<url>http://code.google.com/p/libtorrent-java</url>
@@ -97,6 +97,34 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pdf-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>pdf</id>
<phase>package</phase>
<goals>
<goal>pdf</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.4.1</version>
<executions>
<execution>
<id>clean</id>
<phase>package</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>