merchantsdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.paypal.sdk</groupId> <artifactId>merchantsdk</artifactId> <version>2.15.122</version> </dependency>
<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.paypal.sdk</groupId> <artifactId>merchantsdk</artifactId> <version>2.15.122</version> <packaging>jar</packaging> <name>MerchantSDK</name> <description>The PayPal Merchant SDK provides Java APIs for processing payments, recurring payments, subscriptions and transactions using PayPal's Merchant APIs, which include Express Checkout, Recurring Payments, Direct Payment and Transactional APIs.</description> <url>https://developer.paypal.com/</url> <scm> <connection>scm:git:git://github.com/paypal/merchant-sdk-java.git</connection> <url>https://github.com/paypal/merchant-sdk-java.git</url> </scm> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <repositories> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </repositories> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>com.paypal.sdk</groupId> <artifactId>paypal-core</artifactId> <version>LATEST</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <configuration> <includePom>true</includePom> </configuration> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal> jar </goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.0</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <licenses> <license> <name>PayPal SDK License</name> <url>https://github.com/paypal/merchant-sdk-java/blob/master/LICENSE.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>DL-PP-Platform-Java-SDK</id> <name>DL-PP-Platform-Java-SDK</name> <email>DL-PP-Platform-Java-SDK@paypal.com</email> <url>http://www.paypal.com</url> <organization>PayPal</organization> <organizationUrl>http://www.paypal.com</organizationUrl> </developer> </developers> </project>