authorize-net-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.womply.killbill.plugins</groupId>
<artifactId>authorize-net-plugin</artifactId>
<version>2.8.196</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.womply.killbill.plugins</groupId>
<artifactId>authorize-net-plugin</artifactId>
<packaging>bundle</packaging>
<name>KillBill Plugin for Authorize.net</name>
<version>2.8.196</version>
<description>A Java implementation of a KillBill Payment Plugin that uses Authorize.Net as a payment gateway</description>
<url>https://github.com/OtoAnalytics/killbill-authnet-plugin</url>
<developers>
<developer>
<organization>Womply</organization>
<organizationUrl>http://womply.com</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/OtoAnalytics/killbill-authnet-plugin.git</connection>
<developerConnection>scm:git:.</developerConnection>
<url>http://github.com/OtoAnalytics/killbill-authnet-plugin/tree/develop</url>
</scm>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${build.target-jdk}</source>
<target>${build.target-jdk}</target>
<encoding>${build.sourceEncoding}</encoding>
<maxmem>${build.jvmsize}</maxmem>
<showWarnings>true</showWarnings>
<fork>true</fork>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<configuration>
<encoding>${build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
<configuration>
<appendAssemblyId>true</appendAssemblyId>
<tarLongFileMode>gnu</tarLongFileMode>
</configuration>
</plugin>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${version.checkstyle}</version>
<executions>
<execution>
<id>validate-checkstyle</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>8.19</version>
</dependency>
</dependencies>
<configuration>
<configLocation>${basedir}/build-resources/checkstyle_config.xml</configLocation>
<encoding>${build.sourceEncoding}</encoding>
<consoleOutput>true</consoleOutput>
<linkXRef>false</linkXRef>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
<skip>${check.skip-checkstyle}</skip>
<failsOnError>${check.fail-checkstyle}</failsOnError>
</configuration>
</plugin>
<plugin>
<artifactId>maven-pmd-plugin</artifactId>
<version>${version.pmd}</version>
<executions>
<execution>
<id>validate-pmd</id>
<phase>test-compile</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<skip>${check.skip-pmd}</skip>
<failOnViolation>${check.fail-pmd}</failOnViolation>
<sourceEncoding>${build.sourceEncoding}</sourceEncoding>
<linkXRef>false</linkXRef>
<verbose>true</verbose>
<rulesets>
<ruleset>${basedir}/build-resources/pmd_rulesets.xml</ruleset>
</rulesets>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-tests</id>
<phase>package</phase>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
<execution>
<goals>
<goal>jar</goal>
<goal>test-jar</goal>
</goals>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
<addMavenDescriptor>false</addMavenDescriptor>
</archive>
</configuration>
</execution>
</executions>
<configuration>
<skipIfEmpty>true</skipIfEmpty>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<addClasspath>false</addClasspath>
</manifest>
<manifestEntries>
<Build-Time>${git.build.time}</Build-Time>
<Git-Commit-Id>${git.commit.id}</Git-Commit-Id>
<Git-Commit-Time>${git.commit.time}</Git-Commit-Time>
<Implementation-Version>${git.commit.id.describe}</Implementation-Version>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.2</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>enforce</goal>
</goals>
</execution>
</executions>
<configuration>
<skip>${check.skip-enforcer}</skip>
<fail>${check.fail-enforcer}</fail>
<failFast>false</failFast>
<rules>
<bannedDependencies>
<excludes>
<exclude>org.glassfish.hk2.external:*</exclude>
<exclude>commons-logging:commons-logging-api</exclude>
<exclude>org.apache.logging.log4j:log4j-core</exclude>
<exclude>commons-logging:commons-logging</exclude>
<exclude>org.slf4j:slf4j-log4j12</exclude>
<exclude>log4j:log4j</exclude>
<exclude>junit:junit</exclude>
<exclude>com.google.collections:google-collections</exclude>
<exclude>com.google.guava:guava</exclude>
<exclude>org.eclipse.jetty.orbit:javax.servlet</exclude>
<exclude>org.glassfish.jersey.media:jersey-media-json-jackson</exclude>
<exclude>javax.ws.rs:jsr311-api</exclude>
</excludes>
<includes>
<include>com.google.guava:guava:[10.0.1,)</include>
<include>junit:junit:[4.11,)</include>
</includes>
</bannedDependencies>
<requireMavenVersion>
<version>3.2.5</version>
</requireMavenVersion>
<requireJavaVersion>
<version>${build.target-jdk}</version>
</requireJavaVersion>
</rules>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.5.0</version>
<extensions>true</extensions>
<executions>
<execution>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
<configuration>
<instructions>
<Bundle-Activator>${bundle.activator.class}</Bundle-Activator>
<Export-Package />
<Private-Package>com.womply.billing.killbill.plugins.*;com.womply.killbill.resources.models</Private-Package>
<Import-Package>org.xml.sax;
org.xml.sax.ext;
org.xml.sax.helpers;
com.sun.org.apache.xerces.internal.jaxp;
com.sun.org.apache.xerces.internal.xs;
com.sun.org.apache.xerces.internal.xni;
com.sun.org.apache.xerces.internal.xni.parser;
com.sun.org.apache.xerces.internal.utils;
com.sun.org.apache.xerces.internal.util;
com.sun.org.apache.xerces.internal.impl;
com.sun.org.apache.xerces.internal.impl.dtd;
com.sun.org.apache.xerces.internal.impl.dv;
com.sun.org.apache.xerces.internal.impl.dv.dtd;
com.sun.org.apache.xerces.internal.impl.msg;
com.sun.org.apache.xerces.internal.impl.validation;
com.sun.org.apache.xerces.internal.parsers;
com.sun.xml.internal.bind;
com.sun.xml.internal.bind.v2.util;
com.sun.xml.internal.bind.v2.runtime.unmarshaller;
com.sun.xml.internal.stream;
org.w3c.dom;
org.w3c.dom.ls;
javax.crypto;
javax.crypto.interfaces;
javax.crypto.spec;
javax.net;
javax.net.ssl;
javax.management;
javax.jws;
javax.jws.soap;
javax.annotation;
javax.activation;
javax.xml.soap;
javax.xml.ws;
javax.xml.ws.spi;
javax.xml.ws.handler.soap;
javax.xml.ws.handler;
javax.xml.ws.http;
javax.xml.ws.soap;
javax.xml.ws.wsaddressing;
javax.xml.stream;
javax.xml.stream.events;
javax.xml.stream.util;
javax.xml.bind.annotation.adapters;
javax.xml.bind;
javax.xml.bind.helpers;
javax.xml.bind.annotation;
javax.xml.bind.attachment;
javax.xml.datatype;
javax.xml.namespace;
javax.xml.parsers;
javax.xml.transform;
javax.xml.transform.sax;
javax.xml.transform.dom;
javax.xml.transform.stream;
javax.xml.xpath;
javax.security.auth;
javax.security.auth.x500;
javax.naming.directory;
javax.naming.event;
javax.naming.ldap;
javax.naming.spi;
javax.naming;
*;resolution:=optional</Import-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.18.1</version>
<executions>
<execution>
<id>integration-test</id>
<phase>integration-test</phase>
<goals>
<goal>integration-test</goal>
</goals>
</execution>
<execution>
<id>verify</id>
<phase>verify</phase>
<goals>
<goal>verify</goal>
</goals>
</execution>
</executions>
<configuration>
<encoding>${build.sourceEncoding}</encoding>
<argLine>${jacocoArgLineIT}</argLine>
<systemPropertyVariables>
<docker.host.ip>${docker.host.ip}</docker.host.ip>
<db.url>${db.url}</db.url>
<db.username>${db.flyway.username}</db.username>
<db.password>${db.flyway.password}</db.password>
<db.drivername>com.mysql.jdbc.Driver</db.drivername>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
<executions>
<execution>
<id>set-properties</id>
<phase>validate</phase>
<goals>
<goal>properties</goal>
</goals>
</execution>
<execution>
<phase>process-test-classes</phase>
<goals>
<goal>analyze-only</goal>
<goal>analyze-duplicate</goal>
<goal>analyze-dep-mgt</goal>
</goals>
<configuration>
<skip>${check.skip-dependency}</skip>
</configuration>
</execution>
<execution>
<id>copy</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}</outputDirectory>
<includeArtifactIds>bcprov-jdk15on</includeArtifactIds>
<stripVersion>true</stripVersion>
</configuration>
</execution>
</executions>
<configuration>
<failOnWarning>${check.fail-dependency}</failOnWarning>
<ignoreNonCompile>true</ignoreNonCompile>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<systemPropertyVariables>
<sun.jnu.encoding>${build.sourceEncoding}</sun.jnu.encoding>
<java.awt.headless>true</java.awt.headless>
<java.util.logging.SimpleFormatter.format>%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS %4$s
%5$s%6$s%n</java.util.logging.SimpleFormatter.format>
</systemPropertyVariables>
<forkCount>${test.fork-count}</forkCount>
<reuseForks>${test.reuse-forks}</reuseForks>
<runOrder>random</runOrder>
<parallel>${test.parallel}</parallel>
<threadCount>${test.thread-count}</threadCount>
<argLine>${jacocoArgLineUT}
-Duser.timezone=${test.timezone}
-Dfile.encoding=${build.sourceEncoding}
-Xmx${test.jvmsize}
-Xms${test.jvmsize}
-XX:OnOutOfMemoryError="kill -9 %p"
-XX:+HeapDumpOnOutOfMemoryError</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.5.201505241946</version>
<executions>
<execution>
<id>prepare-unit</id>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<propertyName>jacocoArgLineUT</propertyName>
</configuration>
</execution>
<execution>
<id>report-unit</id>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>prepare-integration</id>
<goals>
<goal>prepare-agent-integration</goal>
</goals>
<configuration>
<propertyName>jacocoArgLineIT</propertyName>
</configuration>
</execution>
<execution>
<id>report-integration</id>
<goals>
<goal>report-integration</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<quiet>true</quiet>
<source>${build.target-jdk}</source>
<encoding>${build.sourceEncoding}</encoding>
<maxmemory>${build.jvmsize}</maxmemory>
<additionalparam>-Xdoclint:${javadoc.lint}</additionalparam>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.1</version>
<executions>
<execution>
<id>${shade-jar-execution-id}</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createSourcesJar>true</createSourcesJar>
<shadedArtifactAttached>false</shadedArtifactAttached>
<shadedClassifierName>jar-with-dependencies</shadedClassifierName>
<filters>
<filter>
<artifact>${project.groupId}:${project.artifactId}</artifact>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jolokia</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>${version.docker.plugin}</version>
<executions>
<execution>
<id>build-images</id>
<phase>package</phase>
<goals>
<goal>build</goal>
</goals>
</execution>
<execution>
<id>start</id>
<phase>pre-integration-test</phase>
<goals>
<goal>start</goal>
</goals>
</execution>
<execution>
<id>stop</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
<execution>
<id>push-to-quay</id>
<phase>deploy</phase>
<goals>
<goal>push</goal>
</goals>
</execution>
</executions>
<configuration>
<skip>${skipITs}</skip>
<images>
<image>
<name>mysql:5.7.34</name>
<alias>killbill_mysql</alias>
<run>
<wait>
<time>${mysql.wait.time}</time>
<log>${mysql.log.regex}</log>
</wait>
<env>
<MYSQL_ROOT_PASSWORD>${db.flyway.password}</MYSQL_ROOT_PASSWORD>
<MYSQL_DATABASE>${db.database}</MYSQL_DATABASE>
</env>
<ports>
<port>${exposed.mysql.port}:${internal.mysql.port}</port>
</ports>
<log>
<enabled>${docker.logs.enabled}</enabled>
<prefix>MS</prefix>
</log>
</run>
</image>
</images>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.9.1</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>src/generated/java</source>
</sources>
</configuration>
</execution>
<execution>
<id>regex-property</id>
<phase>validate</phase>
<goals>
<goal>regex-properties</goal>
</goals>
<configuration>
<regexPropertySettings>
<regexPropertySetting>
<name>docker.host.validated</name>
<value>${docker.host}</value>
<regex>^tcp</regex>
<replacement>https</replacement>
<failIfNoMatch>false</failIfNoMatch>
</regexPropertySetting>
<regexPropertySetting>
<name>docker.host.ip</name>
<value>${docker.host}</value>
<regex>^tcp://([0-9.]+):[0-9]+$</regex>
<replacement>$1</replacement>
<failIfNoMatch>false</failIfNoMatch>
</regexPropertySetting>
</regexPropertySettings>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>2.1.15</version>
<executions>
<execution>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<configuration>
<dateFormat>yyyy-MM-dd'T'HH:mm:ssZZ</dateFormat>
<dateFormatTimeZone>UTC</dateFormatTimeZone>
<failOnNoGitDirectory>false</failOnNoGitDirectory>
<failOnUnableToExtractRepoInfo>false</failOnUnableToExtractRepoInfo>
</configuration>
</plugin>
<plugin>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-maven-plugin</artifactId>
<version>${version.flyway}</version>
<executions>
<execution>
<phase>pre-integration-test</phase>
<goals>
<goal>migrate</goal>
</goals>
</execution>
</executions>
<configuration>
<skip>${skipITs}</skip>
<driver>com.mysql.jdbc.Driver</driver>
<url>${db.url}</url>
<user>${db.flyway.username}</user>
<password>${db.flyway.password}</password>
<schemas>
<schema>killbill</schema>
</schemas>
<locations>
<location>filesystem:src/test/resources/db/migration</location>
</locations>
<outOfOrder>true</outOfOrder>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
<goal>test-jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.jolokia</groupId>
<artifactId>docker-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-pmd-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>dockerHostOverride</id>
<properties>
<docker.host>${env.DOCKER_HOST}</docker.host>
</properties>
</profile>
<profile>
<id>linux</id>
<properties>
<docker.host.validated>unix:///var/run/docker.sock</docker.host.validated>
<docker.keepContainer>true</docker.keepContainer>
<docker.host.ip>127.0.0.1</docker.host.ip>
</properties>
</profile>
<profile>
<id>mac</id>
<properties>
<docker.keepContainer>false</docker.keepContainer>
</properties>
</profile>
<profile>
<id>skip-checks</id>
<properties>
<check.skip-pmd>true</check.skip-pmd>
<check.skip-checkstyle>true</check.skip-checkstyle>
<check.skip-dependency>true</check.skip-dependency>
</properties>
</profile>
<profile>
<id>on-circle</id>
<build>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>noreply@womply.com</keyname>
</configuration>
</execution>
</executions>
<configuration>
<keyname>noreply@womply.com</keyname>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>sonatype-release</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<executions>
<execution>
<id>injected-nexus-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</execution>
</executions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.9.4</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.kill-bill.billing</groupId>
<artifactId>killbill-api</artifactId>
<version>0.50.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.kill-bill.billing.plugin</groupId>
<artifactId>killbill-plugin-api-payment</artifactId>
<version>0.23.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.kill-bill.billing.plugin</groupId>
<artifactId>killbill-plugin-api-notification</artifactId>
<version>0.23.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.framework</artifactId>
<version>4.4.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.4.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>3.4</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>objenesis</artifactId>
<groupId>org.objenesis</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.kill-bill.billing</groupId>
<artifactId>killbill-util</artifactId>
<version>0.18.21</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>jackson-dataformat-csv</artifactId>
<groupId>com.fasterxml.jackson.dataformat</groupId>
</exclusion>
<exclusion>
<artifactId>jackson-dataformat-smile</artifactId>
<groupId>com.fasterxml.jackson.dataformat</groupId>
</exclusion>
<exclusion>
<artifactId>jmustache</artifactId>
<groupId>com.samskivert</groupId>
</exclusion>
<exclusion>
<artifactId>metrics-core</artifactId>
<groupId>io.dropwizard.metrics</groupId>
</exclusion>
<exclusion>
<artifactId>metrics-jcache</artifactId>
<groupId>io.dropwizard.metrics</groupId>
</exclusion>
<exclusion>
<artifactId>cache-api</artifactId>
<groupId>javax.cache</groupId>
</exclusion>
<exclusion>
<artifactId>ST4</artifactId>
<groupId>org.antlr</groupId>
</exclusion>
<exclusion>
<artifactId>commons-email</artifactId>
<groupId>org.apache.commons</groupId>
</exclusion>
<exclusion>
<artifactId>shiro-core</artifactId>
<groupId>org.apache.shiro</groupId>
</exclusion>
<exclusion>
<artifactId>shiro-guice</artifactId>
<groupId>org.apache.shiro</groupId>
</exclusion>
<exclusion>
<artifactId>ehcache</artifactId>
<groupId>org.ehcache</groupId>
</exclusion>
<exclusion>
<artifactId>ehcache-clustered</artifactId>
<groupId>org.ehcache</groupId>
</exclusion>
<exclusion>
<artifactId>shiro-ehcache3</artifactId>
<groupId>org.ehcache.integrations.shiro</groupId>
</exclusion>
<exclusion>
<artifactId>killbill-internal-api</artifactId>
<groupId>org.kill-bill.billing</groupId>
</exclusion>
<exclusion>
<artifactId>killbill-platform-api</artifactId>
<groupId>org.kill-bill.billing</groupId>
</exclusion>
<exclusion>
<artifactId>killbill-platform-lifecycle</artifactId>
<groupId>org.kill-bill.billing</groupId>
</exclusion>
<exclusion>
<artifactId>killbill-platform-osgi</artifactId>
<groupId>org.kill-bill.billing</groupId>
</exclusion>
<exclusion>
<artifactId>killbill-concurrent</artifactId>
<groupId>org.kill-bill.commons</groupId>
</exclusion>
<exclusion>
<artifactId>killbill-jdbi</artifactId>
<groupId>org.kill-bill.commons</groupId>
</exclusion>
<exclusion>
<artifactId>killbill-locker</artifactId>
<groupId>org.kill-bill.commons</groupId>
</exclusion>
<exclusion>
<artifactId>killbill-queue</artifactId>
<groupId>org.kill-bill.commons</groupId>
</exclusion>
<exclusion>
<artifactId>killbill-xmlloader</artifactId>
<groupId>org.kill-bill.commons</groupId>
</exclusion>
<exclusion>
<artifactId>config-magic</artifactId>
<groupId>org.skife.config</groupId>
</exclusion>
<exclusion>
<artifactId>jmxutils</artifactId>
<groupId>org.weakref</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-dbcp2</artifactId>
<version>2.1.1</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
<exclusion>
<artifactId>commons-pool2</artifactId>
<groupId>org.apache.commons</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>checkstyle</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.3</version>
</dependency>
<dependency>
<groupId>org.kill-bill.billing</groupId>
<artifactId>killbill-api</artifactId>
<version>${killbill-api.version}</version>
</dependency>
<dependency>
<groupId>org.kill-bill.billing.plugin</groupId>
<artifactId>killbill-plugin-api-payment</artifactId>
<version>${killbill-plugin-api.version}</version>
</dependency>
<dependency>
<groupId>org.kill-bill.billing.plugin</groupId>
<artifactId>killbill-plugin-api-notification</artifactId>
<version>${killbill-plugin-api.version}</version>
</dependency>
<dependency>
<groupId>org.kill-bill.billing</groupId>
<artifactId>killbill-platform-osgi-api</artifactId>
<version>${killbill-platform.version}</version>
</dependency>
<dependency>
<groupId>org.kill-bill.billing</groupId>
<artifactId>killbill-platform-osgi-bundles-lib-killbill</artifactId>
<version>${killbill-platform.version}</version>
<exclusions>
<exclusion>
<artifactId>jsr305</artifactId>
<groupId>com.google.code.findbugs</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.kill-bill.billing.plugin.java</groupId>
<artifactId>killbill-base-plugin</artifactId>
<version>${killbill-base-plugin.version}</version>
<exclusions>
<exclusion>
<artifactId>jsr305</artifactId>
<groupId>com.google.code.findbugs</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>${osgi.version}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<version>${osgi.version}</version>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.framework</artifactId>
<version>4.4.1</version>
</dependency>
<dependency>
<groupId>org.kill-bill.billing</groupId>
<artifactId>killbill-util</artifactId>
<version>${killbill.version}</version>
</dependency>
<dependency>
<groupId>org.kill-bill.billing</groupId>
<artifactId>killbill-internal-api</artifactId>
<version>${killbill.version}</version>
</dependency>
<dependency>
<groupId>javax.xml.parsers</groupId>
<artifactId>jaxp-api</artifactId>
<version>1.4.5</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
<dependency>
<groupId>org.jooq</groupId>
<artifactId>jooq</artifactId>
<version>${version.jooq}</version>
</dependency>
<dependency>
<groupId>net.authorize</groupId>
<artifactId>anet-java-sdk</artifactId>
<version>1.9.5</version>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${version.lombok}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.1.0.Final</version>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.4.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>3.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-dbcp2</artifactId>
<version>${version.dbcp2}</version>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jdk8</artifactId>
<version>${version.jackson}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-guava</artifactId>
<version>${version.jackson}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>${version.jackson}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${version.jackson}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${version.jackson}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${version.jackson}</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${version.mysql-driver}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${version.testng}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<distributionManagement>
<repository>
<id>${env.MVN_RELEASE_REPO_NAME}</id>
<url>${env.MVN_RELEASE_REPO_URL}</url>
</repository>
<snapshotRepository>
<id>${env.MVN_SNAPSHOT_REPO_NAME}</id>
<url>${env.MVN_SNAPSHOT_REPO_URL}</url>
</snapshotRepository>
</distributionManagement>
<properties>
<test.jvmsize>2G</test.jvmsize>
<db.flyway.password>honeybadger</db.flyway.password>
<killbill-api.version>0.50.2</killbill-api.version>
<killbill-platform.version>0.36.15</killbill-platform.version>
<check.fail-dependency>true</check.fail-dependency>
<shade-jar-execution-id>assemble-killbill-osgi-bundles-authorize-net-gateway-java-plugin</shade-jar-execution-id>
<killbill.version>0.18.21</killbill.version>
<db.flyway.username>root</db.flyway.username>
<killbill-base-plugin.version>1.3.1</killbill-base-plugin.version>
<check.skip-checkstyle>false</check.skip-checkstyle>
<docker.logs.enabled>true</docker.logs.enabled>
<version.slf4j>1.7.21</version.slf4j>
<test.thread-count>10</test.thread-count>
<check.fail-enforcer>true</check.fail-enforcer>
<version.jooq>3.6.2</version.jooq>
<check.skip-pmd>false</check.skip-pmd>
<exposed.mysql.port>33066</exposed.mysql.port>
<check.fail-pmd>true</check.fail-pmd>
<version.testng>6.9.4</version.testng>
<version.flyway>6.4.0</version.flyway>
<build.sourceEncoding>UTF-8</build.sourceEncoding>
<build.target-jdk>1.8</build.target-jdk>
<db.database>killbill</db.database>
<check.skip-dependency>false</check.skip-dependency>
<version.docker.plugin>0.13.4</version.docker.plugin>
<test.fork-count>1</test.fork-count>
<version.dbcp2>2.1.1</version.dbcp2>
<version.jackson>2.9.9</version.jackson>
<check.skip-enforcer>false</check.skip-enforcer>
<test.reuse-forks>true</test.reuse-forks>
<osgi.version>5.0.0</osgi.version>
<test.parallel>classes</test.parallel>
<killbill-plugin-api.version>0.23.1</killbill-plugin-api.version>
<build.jvmsize>1024</build.jvmsize>
<version.lombok>1.16.4</version.lombok>
<check.fail-checkstyle>true</check.fail-checkstyle>
<db.url>jdbc:mysql://${docker.host.ip}:${exposed.mysql.port}/${db.database}</db.url>
<mysql.wait.time>120000</mysql.wait.time>
<internal.mysql.port>3306</internal.mysql.port>
<version.pmd>3.6</version.pmd>
<bundle.activator.class>com.womply.billing.killbill.plugins.AuthorizeNetActivator</bundle.activator.class>
<docker.host>none</docker.host>
<version.mysql-driver>5.1.36</version.mysql-driver>
<test.timezone>UTC</test.timezone>
<mysql.log.regex>.*port: 3306 MySQL Community Server.*</mysql.log.regex>
<service.log.regex>Server: Started</service.log.regex>
<javadoc.lint>none</javadoc.lint>
<version.checkstyle>3.1.0</version.checkstyle>
</properties>
</project>