mastercom
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.mastercard.api</groupId> <artifactId>mastercom</artifactId> <version>6.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"> <modelVersion>4.0.0</modelVersion> <groupId>com.mastercard.api</groupId> <artifactId>mastercom</artifactId> <version>6.0.0</version> <packaging>jar</packaging> <name>mastercom</name> <description>Java SDK for integrating with the Mastercard service</description> <url>https://developer.mastercard.com</url> <licenses> <license> <name>BSD-2 License</name> <url>http://opensource.org/licenses/BSD-2-Clause</url> </license> </licenses> <developers> <developer> <organization>Mastercard</organization> <organizationUrl>https://developer.mastercard.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/MasterCard/mastercard-java-sdk-core.git</connection> <developerConnection>scm:git:git@github.com:MasterCard/mastercard-java-sdk-core.git</developerConnection> <url>https://github.com/MasterCard/mastercard-java-sdk-core</url> </scm> <distributionManagement> <snapshotRepository> <id>ossrh - snapshot</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <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.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.mastercard.api</groupId> <artifactId>sdk-api-core</artifactId> <version>[${api-core-version},${api-core-up-to-version})</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> <scope>test</scope> </dependency> </dependencies> <properties> <api-core-version>1.4.0</api-core-version> <api-core-up-to-version>1.5.0</api-core-up-to-version> </properties> </project>