ao-payments-all
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.aoapps</groupId> <artifactId>ao-payments-all</artifactId> <version>3.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ao-payments-all - Convenience POM to include the payment processing API and all providers. Copyright (C) 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 AO Industries, Inc. support@aoindustries.com 7262 Bull Pen Cir Mobile, AL 36695 This file is part of ao-payments-all. ao-payments-all is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. ao-payments-all is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with ao-payments-all. If not, see <https://www.gnu.org/licenses/>. --> <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> <parent> <groupId>com.aoapps</groupId><artifactId>ao-oss-parent</artifactId><version>1.24.2<!-- -POST-SNAPSHOT --></version> <relativePath>../../parent/pom.xml</relativePath> </parent> <groupId>com.aoapps</groupId><artifactId>ao-payments-all</artifactId><version>3.0.1</version> <packaging>jar</packaging> <properties> <!-- Must be set to ${git.commit.time} for snapshots or ISO 8601 timestamp for releases. --> <project.build.outputTimestamp>2023-09-25T02:56:57Z</project.build.outputTimestamp> <module.name>com.aoapps.payments.all</module.name> </properties> <name>AO Payments All</name> <url>https://oss.aoapps.com/payments/all/</url> <description>Convenience POM to include the payment processing API and all providers.</description> <inceptionYear>2016</inceptionYear> <licenses> <license> <name>GNU General Lesser Public License (LGPL) version 3.0</name> <url>https://www.gnu.org/licenses/lgpl-3.0.txt</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>AO Industries, Inc.</name> <url>https://aoindustries.com/</url> </organization> <developers> <developer> <name>AO Industries, Inc.</name> <email>support@aoindustries.com</email> <url>https://aoindustries.com/</url> <organization>AO Industries, Inc.</organization> <organizationUrl>https://aoindustries.com/</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/ao-apps/ao-payments-all.git</connection> <developerConnection>scm:git:git@github.com:ao-apps/ao-payments-all.git</developerConnection> <url>https://github.com/ao-apps/ao-payments-all</url> <tag>ao-payments-all-3.0.1</tag> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/ao-apps/ao-payments-all/issues</url> </issueManagement> <ciManagement> <system>Jenkins</system> <url>https://jenkins.aoindustries.com/job/ao/job/oss/job/payments/job/all/</url> </ciManagement> <!-- Only one allowed in POM: <ciManagement> <system>GitHub Actions</system> <url>https://github.com/ao-apps/ao-payments-all/actions</url> </ciManagement> --> <repositories> <!-- Repository required here, too, so can find parent --> <repository> <id>sonatype-nexus-snapshots-s01</id> <name>Sonatype Nexus Snapshots S01</name> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <checksumPolicy>fail</checksumPolicy> </snapshots> </repository> <!-- See http://stackoverflow.com/questions/1164043/maven-how-to-include-jars-which-are-not-available-in-reps-into-a-j2ee-project --> <repository> <id>project-repository</id> <url>file://${project.basedir}/repository</url> <releases> <updatePolicy>never</updatePolicy> <checksumPolicy>fail</checksumPolicy> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId><artifactId>maven-dependency-plugin</artifactId> <configuration> <usedDependencies> <!-- Required for module-info.java --> <dependency>com.aoapps:ao-payments-api</dependency> <dependency>com.aoapps:ao-payments-authorizeNet</dependency> <dependency>com.aoapps:ao-payments-payflowPro</dependency> <dependency>com.aoapps:ao-payments-stripe</dependency> <dependency>com.aoapps:ao-payments-test</dependency> <dependency>com.aoapps:ao-payments-usaepay</dependency> </usedDependencies> <ignoredDependencies> <!-- No "module-info.java" in some release builds --> <dependency>com.aoapps:ao-collections</dependency> </ignoredDependencies> </configuration> </plugin> </plugins> </build> <dependencyManagement> <dependencies> <!-- Direct --> <dependency> <groupId>com.aoapps</groupId><artifactId>ao-payments-api</artifactId><version>3.0.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoapps</groupId><artifactId>ao-payments-authorizeNet</artifactId><version>2.0.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoapps</groupId><artifactId>ao-payments-payflowPro</artifactId><version>2.0.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoapps</groupId><artifactId>ao-payments-stripe</artifactId><version>3.0.1<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoapps</groupId><artifactId>ao-payments-test</artifactId><version>2.0.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoapps</groupId><artifactId>ao-payments-usaepay</artifactId><version>2.0.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <!-- Transitive --> <dependency> <groupId>com.aoapps</groupId><artifactId>ao-collections</artifactId><version>3.0.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoapps</groupId><artifactId>ao-lang</artifactId><version>5.5.1<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>commons-beanutils</groupId><artifactId>commons-beanutils</artifactId><version>1.9.4</version> </dependency> <dependency> <groupId>commons-collections</groupId><artifactId>commons-collections</artifactId><version>3.2.2</version> </dependency> <dependency> <groupId>commons-digester</groupId><artifactId>commons-digester</artifactId><version>2.1</version> </dependency> <dependency> <groupId>org.apache.commons</groupId><artifactId>commons-lang3</artifactId><version>3.13.0</version> </dependency> <dependency> <groupId>commons-logging</groupId><artifactId>commons-logging</artifactId><version>1.2</version> </dependency> <dependency> <groupId>commons-validator</groupId><artifactId>commons-validator</artifactId><version>1.7</version> </dependency> <dependency> <!-- See https://developer.paypal.com/docs/classic/api/nvpsoap-sdks/ --> <!-- See https://github.com/paypal/sdk-packages/tree/gh-pages/paypal-payments-pro-payflow-edition --> <!-- Installed with mvn install:install-file -Dfile=payflow-v440.jar -DgroupId=com.paypal -DartifactId=payflow -Dversion=v440 -Dpackaging=jar -DlocalRepositoryPath=repository --> <groupId>com.paypal</groupId><artifactId>payflow</artifactId><version>v440</version> </dependency> <dependency> <groupId>com.stripe</groupId><artifactId>stripe-java</artifactId><version>23.6.0</version> </dependency> <!-- Runtime Transitive --> <dependency> <groupId>com.google.code.gson</groupId><artifactId>gson</artifactId><version>2.10.1</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- Direct --> <dependency> <groupId>com.aoapps</groupId><artifactId>ao-payments-api</artifactId> </dependency> <dependency> <groupId>com.aoapps</groupId><artifactId>ao-payments-authorizeNet</artifactId> </dependency> <dependency> <groupId>com.aoapps</groupId><artifactId>ao-payments-payflowPro</artifactId> </dependency> <dependency> <groupId>com.aoapps</groupId><artifactId>ao-payments-stripe</artifactId> </dependency> <dependency> <groupId>com.aoapps</groupId><artifactId>ao-payments-test</artifactId> </dependency> <dependency> <groupId>com.aoapps</groupId><artifactId>ao-payments-usaepay</artifactId> </dependency> </dependencies> </project>