tch-payment
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.tchepannou.payment</groupId> <artifactId>tch-payment</artifactId> <version>3.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.tchepannou.payment</groupId> <artifactId>tch-payment</artifactId> <version>3.0</version> <packaging>pom</packaging> <name>tch-payment3</name> <description>Online Payment API</description> <url>http://code.google.com/p/tch-payment/</url> <modules> <module>tch-payment-api</module> <module>tch-payment-aim</module> <module>tch-payment-paypal</module> <module>tch-payment-mock</module> </modules> <properties> <tch-util.version>2.0</tch-util.version> <commons-httpclient.version>3.1</commons-httpclient.version> </properties> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://tch-payment.googlecode.com/svn/trunk/</url> </scm> <organization> <name>Herve Tchepannou Inc</name> <url>http://www.tchepannou.com</url> </organization> <developers> <developer> <id>herve</id> <name>Herve Tchepannou</name> <email>herve@tchepannou.com</email> <roles> <role>architect</role> <role>developer</role> </roles> </developer> </developers> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <configLocation>http://localhost/checkstyle/checkstyle_checks.xml</configLocation> <aggregate>true</aggregate> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <aggregate>true</aggregate> </configuration> </plugin> </plugins> </reporting> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>1.2</version> <configuration> <xmlOutput>true</xmlOutput> <xmlOutputDirectory>target</xmlOutputDirectory> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <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> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> </project>