payline-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.payline.payments.processing.client</groupId> <artifactId>payline-java</artifactId> <version>1.0.0</version> </dependency>
<?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"> <parent> <artifactId>oss-parent</artifactId> <groupId>org.sonatype.oss</groupId> <version>7</version> <relativePath>../pom.xml/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>io.payline.payments.processing.client</groupId> <artifactId>payline-java</artifactId> <name>payline-java</name> <version>1.0.0</version> <description>Payline API Java client.</description> <url>https://paylinedata.com/</url> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/Payline/payline-java/issues</url> </issueManagement> <developers> <developer> <id>support</id> <name>Payline Data</name> <email>support@paylinedata.com</email> <organization>Payline Data</organization> <organizationUrl>https://paylinedata.com/</organizationUrl> <timezone>-7</timezone> </developer> </developers> <licenses> <license> <name>AGPL</name> <url>http://www.affero.org/oagpl.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:Payline/payline-java.git</connection> <developerConnection>scm:git:git@github.com:Payline/payline-java.git</developerConnection> <url>git@github.com:Payline/payline-java.git</url> </scm> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.18.1</version> <configuration> <printSummary>true</printSummary> <redirectTestOutputToFile>true</redirectTestOutputToFile> <argLine>-Xmx1G</argLine> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>2.4.3</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <artifactSet> <includes> <include>io.finix.*:*</include> </includes> <excludes> <exclude>!io.finix.*:*:*:*</exclude> </excludes> </artifactSet> <createDependencyReducedPom>true</createDependencyReducedPom> <relocations> <relocation> <pattern>io.finix.payments</pattern> <shadedPattern>io.payline.payments</shadedPattern> </relocation> </relocations> <filters> <filter> <artifact>io.finix.*:*</artifact> <excludes> <exclude>META-INF/**</exclude> </excludes> </filter> </filters> </configuration> </plugin> </plugins> </build> <repositories> <repository> <snapshots /> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/</url> </repository> <repository> <snapshots /> <id>oss-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </repository> </repositories> <dependencies> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.1.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.12</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>1.7.12</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> <version>1.7.12</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> <version>2.6.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.hateoas</groupId> <artifactId>spring-hateoas</artifactId> <version>0.19.0.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.plugin</groupId> <artifactId>spring-plugin-core</artifactId> <version>1.2.0.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> <version>2.1.0</version> <scope>compile</scope> </dependency> </dependencies> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> <jackson.version>2.6.3</jackson.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <finix.version>[1.0.0,2.0.0)</finix.version> </properties> </project>