mirror of
https://github.com/Rogiel/torrent4j
synced 2025-12-05 23:22:49 +00:00
287 lines
8.2 KiB
XML
287 lines
8.2 KiB
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>com.rogiel.torrent4j</groupId>
|
|
<artifactId>torrent4j</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>torrent4j</name>
|
|
<description>Bittorrent java library</description>
|
|
|
|
<inceptionYear>2012</inceptionYear>
|
|
<organization>
|
|
<name>Rogiel</name>
|
|
<url>http://www.rogiel.com/</url>
|
|
</organization>
|
|
<url>http://torrent4j.github.com/</url>
|
|
|
|
<scm>
|
|
<developerConnection>scm:git:git@github.com:torrent4j/torrent4j.git</developerConnection>
|
|
<connection>scm:git:github.com/torrent4j/torrent4j.git</connection>
|
|
<url>git@github.com:torrent4j/torrent4j.git</url>
|
|
</scm>
|
|
<distributionManagement>
|
|
<downloadUrl>https://github.com/torrent4j/torrent4j/downloads</downloadUrl>
|
|
<repository>
|
|
<id>sonatype-nexus-staging</id>
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
<uniqueVersion>false</uniqueVersion>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>sonatype-nexus-snapshots</id>
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
<uniqueVersion>true</uniqueVersion>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
<issueManagement>
|
|
<system>GitHub</system>
|
|
<url>https://github.com/torrent4j/torrent4j/issues</url>
|
|
</issueManagement>
|
|
|
|
<ciManagement>
|
|
<system>GitHub</system>
|
|
<url>https://github.com/torrent4j/torrent4j</url>
|
|
</ciManagement>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>Rogiel</id>
|
|
<name>Rogiel</name>
|
|
<email>rogiel@rogiel.com</email>
|
|
<url>http://www.rogiel.com/</url>
|
|
<timezone>-3</timezone>
|
|
<roles>
|
|
<role>Creator</role>
|
|
<role>API Designer</role>
|
|
</roles>
|
|
</developer>
|
|
</developers>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>GNU General Public License version 3</name>
|
|
<url>http://www.gnu.org/licenses/gpl.txt</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<build>
|
|
<defaultGoal>package</defaultGoal>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3.2</version>
|
|
<configuration>
|
|
<source>1.7</source>
|
|
<target>1.7</target>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>2.2.2</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>attached</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<descriptors>
|
|
<descriptor>src/main/assembly/distribution-bin.xml</descriptor>
|
|
</descriptors>
|
|
<attach>false</attach>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<version>2.7</version>
|
|
<configuration>
|
|
<uniqueVersion>false</uniqueVersion>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.github.github</groupId>
|
|
<artifactId>downloads-maven-plugin</artifactId>
|
|
<version>0.4</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>deploy</phase>
|
|
<goals>
|
|
<goal>upload</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<description>${project.version} release of ${project.name}</description>
|
|
<override>true</override>
|
|
<includeAttached>true</includeAttached>
|
|
<repositoryOwner>torrent4j</repositoryOwner>
|
|
<repositoryName>torrent4j</repositoryName>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>2.2.2</version>
|
|
<configuration>
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
|
<goals>deploy site-deploy</goals><!-- we have to force site-deploy -->
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
<version>3.0</version>
|
|
<configuration>
|
|
<skipDeploy>true</skipDeploy>
|
|
<outputEncoding>UTF-8</outputEncoding>
|
|
<reportPlugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.8</version>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
<version>2.4</version>
|
|
<configuration>
|
|
<developerConnection>scm:git@github.com:torrent4j/torrent4j.git</developerConnection>
|
|
<anonymousConnection>scm:git://github.com/torrent4j/torrent4j.git</anonymousConnection>
|
|
<webAccessUrl>https://github.com/torrent4j/torrent4j/tree/master/</webAccessUrl>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-changelog-plugin</artifactId>
|
|
<version>2.2</version>
|
|
<configuration>
|
|
<outputEncoding>UTF-8</outputEncoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
<version>2.3</version>
|
|
<configuration>
|
|
<inputEncoding>UTF-8</inputEncoding>
|
|
<outputEncoding>UTF-8</outputEncoding>
|
|
</configuration>
|
|
</plugin>
|
|
</reportPlugins>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.github.github</groupId>
|
|
<artifactId>site-maven-plugin</artifactId>
|
|
<version>0.4</version>
|
|
<configuration>
|
|
<message>Creating ${project.artifactId} site for ${project.version}</message>
|
|
<repositoryOwner>torrent4j</repositoryOwner>
|
|
<repositoryName>torrent4j.github.com</repositoryName>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>site-deploy</phase>
|
|
<goals>
|
|
<goal>site</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.github.github</groupId>
|
|
<artifactId>downloads-maven-plugin</artifactId>
|
|
<version>0.4</version>
|
|
<configuration>
|
|
<repositoryOwner>torrent4j</repositoryOwner>
|
|
<repositoryName>torrent4j</repositoryName>
|
|
<includes>
|
|
<include>${project.build.directory}/${project.artifactId}-${project.version}.zip</include>
|
|
</includes>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>deploy</phase>
|
|
<goals>
|
|
<goal>upload</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>release-sign-artifacts</id>
|
|
<activation>
|
|
<property>
|
|
<name>performRelease</name>
|
|
<value>true</value>
|
|
</property>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
<version>1.4</version>
|
|
<executions>
|
|
<execution>
|
|
<id>sign-artifacts</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>sign</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.10</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty-all</artifactId>
|
|
<version>4.0.9.Final</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<version>20041127.091804</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>1.6.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-jdk14</artifactId>
|
|
<version>1.6.2</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |