|
1 | 1 | <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">
|
2 | 2 | <modelVersion>4.0.0</modelVersion>
|
3 | 3 |
|
4 |
| - <parent> |
5 |
| - <groupId>org.sonatype.oss</groupId> |
6 |
| - <artifactId>oss-parent</artifactId> |
7 |
| - <version>7</version> |
8 |
| - <relativePath /> |
9 |
| - </parent> |
10 |
| - |
11 | 4 | <name>Java BitTorrent library</name>
|
12 | 5 | <description>
|
13 | 6 | ttorrent is a pure-Java implementation of the BitTorrent protocol,
|
|
17 | 10 | <url>http://mpetazzoni.github.io/ttorrent/</url>
|
18 | 11 | <groupId>com.turn</groupId>
|
19 | 12 | <artifactId>ttorrent</artifactId>
|
20 |
| - <version>1.5-SNAPSHOT</version> |
| 13 | + <version>1.5</version> |
21 | 14 | <packaging>pom</packaging>
|
22 | 15 |
|
23 |
| - <modules> |
24 |
| - <module>core</module> |
25 |
| - <module>cli</module> |
26 |
| - </modules> |
| 16 | + <modules> |
| 17 | + <module>core</module> |
| 18 | + <module>cli</module> |
| 19 | + </modules> |
27 | 20 |
|
28 | 21 | <scm>
|
29 | 22 | <connection>scm:git:git://github.com/mpetazzoni/ttorrent.git</connection>
|
30 | 23 | <developerConnection>scm:git:ssh://git@github.com/mpetazzoni/ttorrent.git</developerConnection>
|
31 |
| - <url>http://github.com/mpetazzoni/ttorrent</url> |
| 24 | + <url>https://github.com/mpetazzoni/ttorrent</url> |
32 | 25 | <tag>master</tag>
|
33 | 26 | </scm>
|
34 | 27 |
|
|
50 | 43 | <name>Maxime Petazzoni</name>
|
51 | 44 | <email>maxime.petazzoni@bulix.org</email>
|
52 | 45 | <url>http://www.bulix.org</url>
|
53 |
| - <organization>SignalFuse, Inc</organization> |
54 |
| - <organizationUrl>http://www.signalfuse.com</organizationUrl> |
| 46 | + <organization>SignalFx, Inc</organization> |
| 47 | + <organizationUrl>http://www.signalfx.com</organizationUrl> |
55 | 48 | <roles>
|
56 | 49 | <role>maintainer</role>
|
57 | 50 | <role>architect</role>
|
|
68 | 61 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
69 | 62 | </properties>
|
70 | 63 |
|
| 64 | + <distributionManagement> |
| 65 | + <snapshotRepository> |
| 66 | + <id>ossrh</id> |
| 67 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 68 | + </snapshotRepository> |
| 69 | + <repository> |
| 70 | + <id>ossrh</id> |
| 71 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 72 | + </repository> |
| 73 | + </distributionManagement> |
| 74 | + |
71 | 75 | <repositories>
|
72 | 76 | <repository>
|
73 | 77 | <id>jboss-thirdparty-releases</id>
|
|
88 | 92 | </configuration>
|
89 | 93 | </plugin>
|
90 | 94 |
|
| 95 | + <plugin> |
| 96 | + <groupId>org.apache.maven.plugins</groupId> |
| 97 | + <artifactId>maven-source-plugin</artifactId> |
| 98 | + <version>2.2.1</version> |
| 99 | + <executions> |
| 100 | + <execution> |
| 101 | + <id>attach-sources</id> |
| 102 | + <goals> |
| 103 | + <goal>jar-no-fork</goal> |
| 104 | + </goals> |
| 105 | + </execution> |
| 106 | + </executions> |
| 107 | + </plugin> |
| 108 | + |
91 | 109 | <plugin>
|
92 | 110 | <groupId>org.apache.maven.plugins</groupId>
|
93 | 111 | <artifactId>maven-javadoc-plugin</artifactId>
|
|
96 | 114 | <reportOutputDirectory>${basedir}</reportOutputDirectory>
|
97 | 115 | <destDir>doc</destDir>
|
98 | 116 | </configuration>
|
| 117 | + <executions> |
| 118 | + <execution> |
| 119 | + <id>attach-javadocs</id> |
| 120 | + <goals> |
| 121 | + <goal>jar</goal> |
| 122 | + </goals> |
| 123 | + </execution> |
| 124 | + </executions> |
| 125 | + </plugin> |
| 126 | + |
| 127 | + <plugin> |
| 128 | + <groupId>org.apache.maven.plugins</groupId> |
| 129 | + <artifactId>maven-gpg-plugin</artifactId> |
| 130 | + <version>1.5</version> |
| 131 | + <executions> |
| 132 | + <execution> |
| 133 | + <id>sign-artifacts</id> |
| 134 | + <phase>verify</phase> |
| 135 | + <goals> |
| 136 | + <goal>sign</goal> |
| 137 | + </goals> |
| 138 | + </execution> |
| 139 | + </executions> |
99 | 140 | </plugin>
|
100 | 141 |
|
101 | 142 | <plugin>
|
102 | 143 | <groupId>org.apache.maven.plugins</groupId>
|
103 | 144 | <artifactId>maven-release-plugin</artifactId>
|
104 | 145 | <version>2.4.2</version>
|
105 | 146 | </plugin>
|
| 147 | + |
| 148 | + <plugin> |
| 149 | + <groupId>org.sonatype.plugins</groupId> |
| 150 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 151 | + <version>1.6.3</version> |
| 152 | + <extensions>true</extensions> |
| 153 | + <configuration> |
| 154 | + <serverId>ossrh</serverId> |
| 155 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 156 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 157 | + </configuration> |
| 158 | + </plugin> |
106 | 159 | </plugins>
|
107 | 160 | </build>
|
108 | 161 | </project>
|
0 commit comments