Download rest-api-sdk-0.7.1.jar file

Introduction

You can download rest-api-sdk-0.7.1.jar in this page.

License

PayPal SDK License

Type List

rest-api-sdk-0.7.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.paypal.sdk/rest-api-sdk/pom.properties
META-INF/maven/com.paypal.sdk/rest-api-sdk/pom.xml
com.paypal.api.payments.Address.class
com.paypal.api.payments.Amount.class
com.paypal.api.payments.Authorization.class
com.paypal.api.payments.Capture.class
com.paypal.api.payments.CreditCard.class
com.paypal.api.payments.CreditCardHistory.class
com.paypal.api.payments.CreditCardToken.class
com.paypal.api.payments.Details.class
com.paypal.api.payments.FundingInstrument.class
com.paypal.api.payments.HyperSchema.class
com.paypal.api.payments.Item.class
com.paypal.api.payments.ItemList.class
com.paypal.api.payments.Links.class
com.paypal.api.payments.Payee.class
com.paypal.api.payments.Payer.class
com.paypal.api.payments.PayerInfo.class
com.paypal.api.payments.Payment.class
com.paypal.api.payments.PaymentExecution.class
com.paypal.api.payments.PaymentHistory.class
com.paypal.api.payments.RedirectUrls.class
com.paypal.api.payments.Refund.class
com.paypal.api.payments.RelatedResources.class
com.paypal.api.payments.Sale.class
com.paypal.api.payments.ShippingAddress.class
com.paypal.api.payments.Transaction.class
com.paypal.api.payments.Transactions.class

Pom

rest-api-sdk-0.7.1.pom file content.

<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>rest-api-sdk</artifactId>
    <version>0.7.1</version>
    <packaging>jar</packaging>
    <name>REST API SDK</name>
    <description>PayPal SDK for integrating with the REST APIs</description>
    <url>https://developer.paypal.com/</url>
    <scm>
        <connection>scm:git:git://github.com/paypal/rest-api-sdk-java.git</connection>
        <url>https://github.com/paypal/rest-api-sdk-java.git</url>
    </scm>
    <distributionManagement>
        <snapshotRepository>
            <id>sonatype-nexus-snapshots</id>
            <name>Sonatype Nexus Snapshots</name>
            <url>${sonatypeOssDistMgmtSnapshotsUrl}</url>
        </snapshotRepository>
        <repository>
            <id>sonatype-nexus-staging</id>
            <name>Nexus Release Repository</name>
            <url>${sonatypeNexusStagingUrl}</url>
        </repository>
    </distributionManagement>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.3.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.paypal.sdk</groupId>
            <artifactId>paypal-core</artifactId>
            <version>1.4.4</version>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <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-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>
        </plugins>
    </build>
    <licenses>
        <license>
            <name>PayPal SDK License</name>
            <url>https://github.com/paypal/rest-api-sdk-java/blob/master/LICENSE.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <profiles>
        <profile>
            <id>coverage</id>
            <activation>
                <!-- Jenkins -->
                <property>
                    <name>env.BUILD_NUMBER</name>
                </property>
            </activation>
            <dependencies>
                <dependency>
                    <groupId>net.sourceforge.cobertura</groupId>
                    <artifactId>cobertura</artifactId>
                    <version>1.9.4.1</version>
                </dependency>
            </dependencies>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.codehaus.mojo</groupId>
                        <artifactId>cobertura-maven-plugin</artifactId>
                        <version>2.5.1</version>
                        <configuration>
                            <formats>
                                <format>html</format>
                                <format>xml</format>
                            </formats>
                        </configuration>
                        <executions>
                            <execution>
                                <phase>package</phase>
                                <goals>
                                    <goal>cobertura</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
        <profile>
            <id>travis</id>
            <activation>
                <property>
                    <name>env.TRAVIS</name>
                    <value>true</value>
                </property>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.eluder.coveralls</groupId>
                        <artifactId>coveralls-maven-plugin</artifactId>
                        <version>2.0.0</version>
                    </plugin>
                    <plugin>
                        <groupId>org.codehaus.mojo</groupId>
                        <artifactId>cobertura-maven-plugin</artifactId>
                        <version>2.5.2</version>
                        <configuration>
                            <formats>
                                <format>html</format>
                                <format>xml</format>
                            </formats>
                        </configuration>
                        <executions>
                            <execution>
                                <phase>package</phase>
                                <goals>
                                    <goal>cobertura</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
    <developers>
        <developer>
            <id>DL-PP-Platform-Java-SDK</id>
            <name>DL-PP-Platform-Java-SDK</name>
            <email>DL-PP-Platform-Java-SDK@ebay.com</email>
            <url>http://www.paypal.com</url>
            <organization>PayPal</organization>
            <organizationUrl>http://www.paypal.com</organizationUrl>
        </developer>
    </developers>
</project>

POM Entry

<dependency>
   <groupId>com.paypal.sdk</groupId>
   <artifactId>rest-api-sdk</artifactId>
   <version>0.7.1</version>
</dependency>

Download

If you think the following rest-api-sdk-0.7.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download rest-api-sdk-0.7.1.jar file




PreviousNext

Related