|
5 | 5 |
|
6 | 6 | <groupId>cc.protea.spreedly</groupId>
|
7 | 7 | <artifactId>spreedly</artifactId>
|
8 |
| - <version>1.0-SNAPSHOT</version> |
| 8 | + <version>0.9</version> |
9 | 9 | <packaging>jar</packaging>
|
10 | 10 |
|
11 | 11 | <name>spreedly</name>
|
12 |
| - <url>http://protea.cc/projects/</url> |
| 12 | + <description>Java SDK around the Spreedly RESTful API</description> |
| 13 | + |
| 14 | + <url>https://github.com/rjstanford/spreedly-java</url> |
| 15 | + |
| 16 | + |
| 17 | + <issueManagement> |
| 18 | + <url>https://github.com/rjstanford/spreedly-java/issues</url> |
| 19 | + <system>GitHub Issues</system> |
| 20 | + </issueManagement> |
| 21 | + |
| 22 | + <licenses> |
| 23 | + <license> |
| 24 | + <name>MIT License</name> |
| 25 | + <url>http://www.opensource.org/licenses/mit-license.php</url> |
| 26 | + <distribution>repo</distribution> |
| 27 | + </license> |
| 28 | + </licenses> |
| 29 | + |
| 30 | + <scm> |
| 31 | + <url>https://github.com/rjstanford/spreedly-java</url> |
| 32 | + <connection>scm:git:git://github.com/rjstanford/spreedly-java.git</connection> |
| 33 | + <developerConnection>scm:git:git@github.com:rjstanford/spreedly-java.git</developerConnection> |
| 34 | + </scm> |
| 35 | + |
| 36 | + <developers> |
| 37 | + <developer> |
| 38 | + <email>richard@richardstanford.com</email> |
| 39 | + <name>Richard Stanford</name> |
| 40 | + <url>https://github.com/rjstanford</url> |
| 41 | + <id>rjstanford</id> |
| 42 | + </developer> |
| 43 | + </developers> |
| 44 | + |
13 | 45 |
|
14 | 46 | <properties>
|
15 | 47 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
26 | 58 |
|
27 | 59 | <build>
|
28 | 60 | <plugins>
|
| 61 | + <plugin> |
| 62 | + <groupId>org.apache.maven.plugins</groupId> |
| 63 | + <artifactId>maven-gpg-plugin</artifactId> |
| 64 | + <version>1.5</version> |
| 65 | + <executions> |
| 66 | + <execution> |
| 67 | + <id>sign-artifacts</id> |
| 68 | + <phase>verify</phase> |
| 69 | + <goals> |
| 70 | + <goal>sign</goal> |
| 71 | + </goals> |
| 72 | + </execution> |
| 73 | + </executions> |
| 74 | + </plugin> |
29 | 75 | <plugin>
|
30 | 76 | <groupId>org.apache.maven.plugins</groupId>
|
31 | 77 | <artifactId>maven-source-plugin</artifactId>
|
|
92 | 138 | </build>
|
93 | 139 |
|
94 | 140 | <distributionManagement>
|
95 |
| - <repository> |
96 |
| - <id>aws-release</id> |
97 |
| - <name>AWS Release Repository</name> |
98 |
| - <url>s3://protea-repo/release</url> |
99 |
| - </repository> |
100 | 141 | <snapshotRepository>
|
101 |
| - <id>aws-snapshot</id> |
102 |
| - <name>AWS Snapshot Repository</name> |
103 |
| - <url>s3://protea-repo/snapshot</url> |
| 142 | + <id>ossrh</id> |
| 143 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
104 | 144 | </snapshotRepository>
|
| 145 | + <!-- <repository> <id>aws-release</id> <name>AWS Release Repository</name> |
| 146 | + <url>s3://protea-repo/release</url> </repository> <snapshotRepository> <id>aws-snapshot</id> |
| 147 | + <name>AWS Snapshot Repository</name> <url>s3://protea-repo/snapshot</url> |
| 148 | + </snapshotRepository> --> |
105 | 149 | </distributionManagement>
|
106 | 150 |
|
107 | 151 | </project>
|
0 commit comments