|
8 | 8 | <version>1.0.3-SNAPSHOT</version>
|
9 | 9 | <packaging>pom</packaging>
|
10 | 10 | <name>jsondoc-master</name>
|
| 11 | + <url>http://jsondoc.org</url> |
11 | 12 |
|
12 | 13 | <developers>
|
13 | 14 | <developer>
|
14 | 15 | <name>Fabio Maffioletti</name>
|
| 16 | + <email>fabio.maffioletti@gmail.com</email> |
15 | 17 | </developer>
|
16 | 18 | </developers>
|
17 | 19 |
|
| 20 | + <licenses> |
| 21 | + <license> |
| 22 | + <name>MIT License</name> |
| 23 | + <url>http://www.opensource.org/licenses/mit-license.php</url> |
| 24 | + </license> |
| 25 | + </licenses> |
| 26 | + |
18 | 27 | <scm>
|
19 | 28 | <connection>scm:git:git@github.com:fabiomaffioletti/jsondoc.git</connection>
|
20 |
| - <url>scm:git:git@github.com:fabiomaffioletti/jsondoc.git</url> |
21 | 29 | <developerConnection>scm:git:git@github.com:fabiomaffioletti/jsondoc.git</developerConnection>
|
| 30 | + <url>git@github.com:fabiomaffioletti/jsondoc.git</url> |
22 | 31 | </scm>
|
23 | 32 |
|
24 | 33 | <modules>
|
|
29 | 38 | <module>jsondoc-ui</module>
|
30 | 39 | </modules>
|
31 | 40 |
|
| 41 | + <distributionManagement> |
| 42 | + <snapshotRepository> |
| 43 | + <id>ossrh</id> |
| 44 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 45 | + </snapshotRepository> |
| 46 | + <repository> |
| 47 | + <id>ossrh</id> |
| 48 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 49 | + </repository> |
| 50 | + </distributionManagement> |
| 51 | + |
32 | 52 | <properties>
|
33 | 53 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
34 | 54 | </properties>
|
35 | 55 |
|
36 |
| - <repositories> |
37 |
| - <repository> |
38 |
| - <id>springource-artifactory</id> |
39 |
| - <url>http://repo.springsource.org/libs-milestone</url> |
40 |
| - </repository> |
41 |
| - </repositories> |
42 |
| - |
43 | 56 | <dependencyManagement>
|
44 | 57 | <dependencies>
|
45 | 58 | <!-- Jsondoc -->
|
|
185 | 198 | <artifactId>versions-maven-plugin</artifactId>
|
186 | 199 | <version>2.1</version>
|
187 | 200 | </plugin>
|
| 201 | + |
| 202 | + <plugin> |
| 203 | + <groupId>org.apache.maven.plugins</groupId> |
| 204 | + <artifactId>maven-gpg-plugin</artifactId> |
| 205 | + <version>1.5</version> |
| 206 | + <executions> |
| 207 | + <execution> |
| 208 | + <id>sign-artifacts</id> |
| 209 | + <phase>verify</phase> |
| 210 | + <goals> |
| 211 | + <goal>sign</goal> |
| 212 | + </goals> |
| 213 | + </execution> |
| 214 | + </executions> |
| 215 | + </plugin> |
| 216 | + |
| 217 | + <plugin> |
| 218 | + <groupId>org.sonatype.plugins</groupId> |
| 219 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 220 | + <version>1.6.2</version> |
| 221 | + <extensions>true</extensions> |
| 222 | + <configuration> |
| 223 | + <serverId>ossrh</serverId> |
| 224 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 225 | + <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 226 | + </configuration> |
| 227 | + </plugin> |
| 228 | + |
188 | 229 | </plugins>
|
189 | 230 | </build>
|
190 | 231 |
|
|
0 commit comments