aoserv-credit-cards
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.aoindustries</groupId> <artifactId>aoserv-credit-cards</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- aoserv-credit-cards - Stores credit card processing data in the AOServ Platform. Copyright (C) 2016 AO Industries, Inc. support@aoindustries.com 7262 Bull Pen Cir Mobile, AL 36695 This file is part of aoserv-credit-cards. aoserv-credit-cards 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. aoserv-credit-cards 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 aoserv-credit-cards. If not, see <http://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> <prerequisites> <maven>3.0.4</maven> </prerequisites> <groupId>com.aoindustries</groupId> <artifactId>aoserv-credit-cards</artifactId> <version>1.0.0</version> <packaging>jar</packaging> <name>AOServ Credit Cards</name> <url>https://www.aoindustries.com/docs/aoserv-credit-cards/</url> <description>Stores credit card processing data in the AOServ Platform.</description> <inceptionYear>2007</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> </license> </licenses> <organization> <name>AO Industries, Inc.</name> <url>https://www.aoindustries.com/</url> </organization> <developers> <developer> <name>AO Industries, Inc.</name> <email>support@aoindustries.com</email> <organization>AO Industries, Inc.</organization> <organizationUrl>https://www.aoindustries.com/</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/aoindustries/aoserv-credit-cards.git</connection> <developerConnection>scm:git:git@github.com:aoindustries/aoserv-credit-cards.git</developerConnection> <url>http://github.com/aoindustries/aoserv-credit-cards</url> <tag>aoserv-credit-cards-1.0.0</tag> </scm> <repositories> <repository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <!-- Unused for Nexus plugin <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> --> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <compilerArgs> <arg>-Xlint</arg> </compilerArgs> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.8.1</version><!-- 2.9 still shows some output even with printSummary=false --> <configuration> <printSummary>false</printSummary> <redirectTestOutputToFile>true</redirectTestOutputToFile> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <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> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy<!-- Necessary with autoReleaseAfterClose=true? nexus-staging:release--></goals> </configuration> </plugin> </plugins> </build> <profiles> <!-- Add bootclasspath when profile enabled --> <profile> <id>bootclasspaths</id> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <compilerArguments> <bootclasspath>${bootclasspath.jdk16}</bootclasspath> </compilerArguments> </configuration> </plugin> </plugins> </pluginManagement> </build> </profile> <!-- Disable doclint in Java 1.8+ --> <profile> <id>doclint-java8-disable</id> <activation> <jdk>[1.8,)</jdk> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <configuration> <header><![CDATA[<a href="${project.url}">${project.name}<a>]]></header> <keywords>true</keywords><!-- Help internal search systems --> <quiet>true</quiet> <links> <link>https://www.aoindustries.com/ao-credit-cards/api/apidocs/</link> <link>https://www.aoindustries.com/docs/aocode-public/</link> <link>https://www.aoindustries.com/docs/aoserv-client/</link> </links> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </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> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>com.aoindustries</groupId> <artifactId>ao-credit-cards-api</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>com.aoindustries</groupId> <artifactId>aocode-public</artifactId> <version>1.8.0</version> </dependency> <dependency> <groupId>com.aoindustries</groupId> <artifactId>aoserv-client</artifactId> <version>1.79.4</version> </dependency> </dependencies> </project>