recurly-java-library
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.ning.billing</groupId> <artifactId>recurly-java-library</artifactId> <version>0.113.21</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>5</version> <relativePath>../pom.xml/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.ning.billing</groupId> <artifactId>recurly-java-library</artifactId> <name>Recurly Java library</name> <version>0.113.21</version> <description>Java library for Recurly</description> <url>http://github.com/killbilling/recurly-java-library</url> <issueManagement> <system>Github</system> <url>http://github.com/killbilling/recurly-java-library</url> </issueManagement> <inceptionYear>2012</inceptionYear> <mailingLists> <mailingList> <name>Killbilling users</name> <subscribe>killbilling-users+subscribe@googlegroups.com</subscribe> <unsubscribe>killbilling-users+unsubscribe@googlegroups.com</unsubscribe> <post>killbilling-users@googlegroups.com</post> <archive>http://groups.google.com/group/killbilling-users</archive> </mailingList> </mailingLists> <developers> <developer> <id>pierre</id> <name>Pierre-Alexandre Meyer</name> <email>pierre@mouraf.org</email> <url>http://pub.mouraf.org/blog</url> <timezone>-8</timezone> <properties> <picUrl>http://pub.mouraf.org/me/me.jpg</picUrl> </properties> </developer> <developer> <id>stephane</id> <name>Stephane Brossier</name> </developer> <developer> <id>martin</id> <name>Martin Westhead</name> </developer> </developers> <licenses> <license> <name>Apache License 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/killbilling/recurly-java-library.git</connection> <developerConnection>scm:git:git@github.com:killbilling/recurly-java-library.git</developerConnection> <url>http://github.com/killbilling/recurly-java-library/tree/master</url> </scm> <build> <plugins> <plugin> <groupId>com.ning.maven.plugins</groupId> <artifactId>maven-dependency-versions-check-plugin</artifactId> <version>2.0.2</version> <executions> <execution> <phase>none</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <failBuildInCaseOfConflict>true</failBuildInCaseOfConflict> </configuration> </plugin> <plugin> <groupId>com.ning.maven.plugins</groupId> <artifactId>maven-duplicate-finder-plugin</artifactId> <version>1.0.3</version> <executions> <execution> <phase>verify</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <failBuildInCaseOfConflict>true</failBuildInCaseOfConflict> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.3</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>2.3</version> <executions> <execution> <id>analyze</id> <goals> <goal>analyze-only</goal> </goals> <configuration> <ignoreNonCompile>true</ignoreNonCompile> <failOnWarning>false</failOnWarning> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <version>0.7</version> <executions> <execution> <phase>verify</phase> <goals> <goal>check</goal> </goals> <configuration> <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> <useIdeaDefaultExcludes>true</useIdeaDefaultExcludes> <useMavenDefaultExcludes>true</useMavenDefaultExcludes> <excludes> <exclude>.github/**</exclude> <exclude>.vscode/**</exclude> <exclude>.idea/**</exclude> <exclude>**/.project</exclude> <exclude>.git/**</exclude> <exclude>.gitignore</exclude> <exclude>**/.classpath</exclude> <exclude>ignore/**</exclude> <exclude>doc/**</exclude> <exclude>src/site/**</exclude> <exclude>*.log</exclude> <exclude>README.*</exclude> <exclude>TODO</exclude> <exclude>logs/**</exclude> <exclude>**/*.xsd</exclude> <exclude>**/*.xml</exclude> <exclude>**/*.properties</exclude> <exclude>**/*.dont-let-git-remove-this-directory</exclude> <exclude>**/test-output/**</exclude> <exclude>**/target/**</exclude> <exclude>**/.settings/**</exclude> <exclude>scripts/**</exclude> <exclude>.travis.yml</exclude> <exclude>travis-test.sh</exclude> <exclude>bin/**</exclude> <exclude>CREDITS</exclude> </excludes> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>1.0.1</version> <executions> <execution> <id>enforce-versions</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireJavaVersion> <version>1.6</version> </requireJavaVersion> <bannedDependencies> <excludes> <exclude>com.google.code.guice:guice</exclude> <exclude>com.google.collections:google-collections</exclude> <exclude>com.google.guava:guava</exclude> </excludes> <includes> <include>com.google.guava:guava:[10.0.1,)</include> </includes> </bannedDependencies> </rules> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <additionalparam>-quiet -Xdoclint:none</additionalparam> <additionalJOption>-J-Xmx1024m</additionalJOption> <source>1.6</source> <encoding>UTF-8</encoding> <maxmemory>2g</maxmemory> <linksource>true</linksource> <show>public</show> <splitindex>true</splitindex> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.2.1</version> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>1.5.9</version> </dependency> </dependencies> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>create-source-jar</id> <goals> <goal>jar-no-fork</goal> <goal>jar</goal> <goal>test-jar</goal> </goals> </execution> </executions> <configuration> <attach>true</attach> </configuration> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.0</version> <configuration> <chmod>true</chmod> <inputEncoding>UTF-8</inputEncoding> <outputEncoding>UTF-8</outputEncoding> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.11</version> <configuration> <useManifestOnlyJar>false</useManifestOnlyJar> <groups>fast,slow</groups> </configuration> </plugin> <plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> <version>4.0.3</version> <executions> <execution> <goals> <goal>revision</goal> </goals> </execution> </executions> <configuration> <gitDescribe> <always>true</always> </gitDescribe> <generateGitPropertiesFile>true</generateGitPropertiesFile> <generateGitPropertiesFilename>src/main/resources/com/ning/billing/recurly/git.properties</generateGitPropertiesFilename> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>com.fasterxml.jackson.*:*</include> <include>org.codehaus.woodstox:stax2-api</include> </includes> </artifactSet> <relocations> <relocation> <pattern>com.fasterxml.jackson</pattern> <shadedPattern>com.ning.billing.recurly.shaded.com.fasterxml.jackson</shadedPattern> </relocation> <relocation> <pattern>org.codehaus.stax2</pattern> <shadedPattern>com.ning.billing.recurly.shaded.org.codehaus.stax2</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>travis</id> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.11</version> <configuration> <groups>integration,fast,enterprise</groups> <systemPropertyVariables> <file.encoding>UTF-8</file.encoding> <user.timezone>GMT</user.timezone> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>integration</id> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.11</version> <configuration> <useManifestOnlyJar>false</useManifestOnlyJar> <groups>integration</groups> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>enterprise</id> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.11</version> <configuration> <useManifestOnlyJar>false</useManifestOnlyJar> <groups>enterprise</groups> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>sonatype-oss-release</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>2.3.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>18.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>2.0.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.12</version> <scope>compile</scope> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>2.7</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.10</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.8.21</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>bsh</artifactId> <groupId>org.beanshell</groupId> </exclusion> <exclusion> <artifactId>jcommander</artifactId> <groupId>com.beust</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.pdfbox</groupId> <artifactId>pdfbox</artifactId> <version>2.0.15</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>fontbox</artifactId> <groupId>org.apache.pdfbox</groupId> </exclusion> </exclusions> </dependency> </dependencies> <reporting> <plugins> <plugin> <artifactId>maven-changelog-plugin</artifactId> <version>2.2</version> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.8</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <additionalparam>-quiet</additionalparam> </configuration> <reportSets> <reportSet> <id>html</id> <reports> <report>javadoc</report> <report>test-javadoc</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <artifactId>maven-jxr-plugin</artifactId> <version>2.3</version> <configuration> <linkJavadoc>true</linkJavadoc> </configuration> </plugin> <plugin> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.10</version> </plugin> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <configuration> <excludes> <exclude>.idea/**</exclude> <exclude>.git/**</exclude> <exclude>.gitignore</exclude> <exclude>README.*</exclude> <exclude>doc/**</exclude> <exclude>src/site/**</exclude> <exclude>*.log</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.5.1</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>2.3.2</version> <configuration> <threshold>Low</threshold> <effort>Max</effort> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>taglist-maven-plugin</artifactId> <version>2.4</version> <configuration> <tagListOptions> <tagClasses> <tagClass> <displayName>Todo Work</displayName> <tags> <tag> <matchString>todo</matchString> <matchType>ignoreCase</matchType> </tag> <tag> <matchString>FIXME</matchString> <matchType>exact</matchType> </tag> </tags> </tagClass> </tagClasses> </tagListOptions> </configuration> </plugin> </plugins> </reporting> <properties> <slf4j.version>1.7.10</slf4j.version> <guava.version>18.0</guava.version> <jackson.version>2.5.0</jackson.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>