Skip to content

Commit 07a749e

Browse files
committed
Added Maven details
1 parent 0fa1d4c commit 07a749e

File tree

2 files changed

+62
-10
lines changed

2 files changed

+62
-10
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
spreedly-java
22
=============
33

4+
```
5+
<dependency>
6+
<groupId>cc.protea.spreedly</groupId>
7+
<artifactId>spreedly</artifactId>
8+
<version>0.9</version>
9+
</dependency>
10+
```
11+
412
I've attempted to preserve as much as possible of the Spreedly nomenclature, while making this more accessible to folk who spend
513
a lot more time writing Java code than they do working with the Spreedly team.
614

pom.xml

Lines changed: 54 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,43 @@
55

66
<groupId>cc.protea.spreedly</groupId>
77
<artifactId>spreedly</artifactId>
8-
<version>1.0-SNAPSHOT</version>
8+
<version>0.9</version>
99
<packaging>jar</packaging>
1010

1111
<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+
1345

1446
<properties>
1547
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -26,6 +58,20 @@
2658

2759
<build>
2860
<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>
2975
<plugin>
3076
<groupId>org.apache.maven.plugins</groupId>
3177
<artifactId>maven-source-plugin</artifactId>
@@ -92,16 +138,14 @@
92138
</build>
93139

94140
<distributionManagement>
95-
<repository>
96-
<id>aws-release</id>
97-
<name>AWS Release Repository</name>
98-
<url>s3://protea-repo/release</url>
99-
</repository>
100141
<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>
104144
</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> -->
105149
</distributionManagement>
106150

107151
</project>

0 commit comments

Comments
 (0)