-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpom.xml
More file actions
95 lines (86 loc) · 4.03 KB
/
Copy pathpom.xml
File metadata and controls
95 lines (86 loc) · 4.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.paypal</groupId>
<artifactId>payflow</artifactId>
<version>5.0.3</version>
<packaging>jar</packaging>
<name>Payflow Java SDK</name>
<description>PayPal Payflow Gateway SDK for Java</description>
<url>https://github.com/paypal/payflow-gateway</url>
<properties>
<maven.compiler.release>11</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<!-- No external runtime dependencies: XML parsing uses the JDK built-in JAXP implementation -->
<build>
<!--
The SDK source is split across three directories under src/sdk/.
build-helper-maven-plugin adds the extra roots so Maven sees all of them.
The samples directory (src/paypal/) is intentionally excluded from the
library JAR; compile samples manually with payflow.jar on the classpath.
-->
<finalName>payflow</finalName>
<sourceDirectory>src/sdk/base</sourceDirectory>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>src/sdk/dataobjects</source>
<source>src/sdk/transactions</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
<configuration>
<archive>
<manifestEntries>
<Implementation-Title>Payflow Java SDK</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<!-- Include only the SDK source trees; exclude the sample sources -->
<sourcepath>
${project.basedir}/src/sdk/base;${project.basedir}/src/sdk/dataobjects;${project.basedir}/src/sdk/transactions
</sourcepath>
<windowtitle>Payflow Java SDK ${project.version}</windowtitle>
<doctitle>Payflow Java SDK ${project.version} API Reference</doctitle>
<header>Payflow Java SDK ${project.version}</header>
<bottom>Copyright © PayPal. All rights reserved.</bottom>
<reportOutputDirectory>${project.reporting.outputDirectory}</reportOutputDirectory>
<destDir>apidocs</destDir>
<doclint>none</doclint>
</configuration>
</plugin>
</plugins>
</build>
</project>