forked from braintree/braintree_java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add release attributes to pom.xml required for Maven Central sync
- Loading branch information
Ben Hardy
committed
Jun 5, 2013
1 parent
1a8f7a7
commit bb4f374
Showing
1 changed file
with
32 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,41 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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"> | ||
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.braintree.java</groupId> | ||
<groupId>com.braintreepayments.gateway</groupId> | ||
<artifactId>braintree-java</artifactId> | ||
<version>2.23.0-SNAPSHOT</version> | ||
<description>Java Client Library for Braintree Payments Gateway</description> | ||
<packaging>jar</packaging> | ||
<name>Braintree Gateway Java Client Library</name> | ||
<url>https://www.braintreegateway.com</url> | ||
<inceptionYear>2013</inceptionYear> | ||
<properties> | ||
</properties> | ||
|
||
<repositories> | ||
<repository> | ||
<id>maven.apache.org</id> | ||
<name>Apache Maven Repository</name> | ||
<url>http://repo.maven.apache.org/maven2</url> | ||
</repository> | ||
</repositories> | ||
<licenses> | ||
<license> | ||
<name>MIT license</name> | ||
<url>http://www.opensource.org/licenses/mit-license.php</url> | ||
</license> | ||
</licenses> | ||
|
||
<scm> <!-- currently pointing to our public github! --> | ||
<url> | ||
https://github.com/braintree/braintree-java/ | ||
</url> | ||
<connection> | ||
scm:git:ssh://[email protected]/braintree/braintree-java.git | ||
</connection> | ||
<developerConnection> | ||
scm:git:ssh://[email protected]/braintree/braintree-java.git | ||
</developerConnection> | ||
</scm> | ||
|
||
<developers> | ||
<developer> | ||
<id>devs</id> | ||
<name>Braintree Payments</name> | ||
<timezone>-5</timezone> | ||
</developer> | ||
</developers> | ||
|
||
<dependencies> | ||
<dependency> | ||
|