|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 |
|
6 | 6 | <groupId>com.ewaypayments</groupId> |
|
12 | 12 | <description>A Java library for connecting to eWAY's Rapid API</description> |
13 | 13 | <url>https://www.eway.com.au</url> |
14 | 14 | <organization> |
15 | | - <name>eWAY</name> |
16 | | - <url>https://www.eway.com.au</url> |
| 15 | + <name>eWAY</name> |
| 16 | + <url>https://www.eway.com.au</url> |
17 | 17 | </organization> |
18 | 18 | <developers> |
19 | | - <developer> |
20 | | - <organization>eWAY</organization> |
21 | | - <organizationUrl>https://www.eway.com.au</organizationUrl> |
22 | | - </developer> |
| 19 | + <developer> |
| 20 | + <organization>eWAY</organization> |
| 21 | + <organizationUrl>https://www.eway.com.au</organizationUrl> |
| 22 | + </developer> |
23 | 23 | </developers> |
24 | 24 | <licenses> |
25 | | - <license> |
26 | | - <name>MIT</name> |
27 | | - <url>http://opensource.org/licenses/MIT</url> |
28 | | - </license> |
| 25 | + <license> |
| 26 | + <name>MIT</name> |
| 27 | + <url>http://opensource.org/licenses/MIT</url> |
| 28 | + </license> |
29 | 29 | </licenses> |
30 | 30 |
|
31 | 31 | <scm> |
32 | | - <connection>scm:git@github.com:eWAYPayment/eway-rapid-java.git</connection> |
33 | | - <developerConnection>scm:git@github.com:eWAYPayment/eway-rapid-java.git</developerConnection> |
34 | | - <url>git@github.com:eWAYPayment/eway-rapid-java.git</url> |
| 32 | + <connection>scm:git@github.com:eWAYPayment/eway-rapid-java.git</connection> |
| 33 | + <developerConnection>scm:git@github.com:eWAYPayment/eway-rapid-java.git</developerConnection> |
| 34 | + <url>git@github.com:eWAYPayment/eway-rapid-java.git</url> |
35 | 35 | </scm> |
36 | 36 | <distributionManagement> |
37 | 37 | <snapshotRepository> |
|
46 | 46 |
|
47 | 47 | <dependencies> |
48 | 48 | <!-- A bundle containing code of all jar-based modules that provide JAX-RS |
49 | | - and Jersey-related features --> |
| 49 | + and Jersey-related features --> |
50 | 50 | <dependency> |
51 | 51 | <groupId>com.sun.jersey</groupId> |
52 | 52 | <artifactId>jersey-bundle</artifactId> |
53 | 53 | <version>1.19</version> |
54 | 54 | </dependency> |
55 | 55 | <!-- The Commons IO library contains utility classes, stream implementations, |
56 | | - file filters, file comparators, endian transformation classes, and much more --> |
| 56 | + file filters, file comparators, endian transformation classes, and much more --> |
57 | 57 | <dependency> |
58 | 58 | <groupId>org.apache.commons</groupId> |
59 | 59 | <artifactId>commons-lang3</artifactId> |
60 | 60 | <version>3.4</version> |
61 | 61 | </dependency> |
62 | 62 | <!-- JUnit is a unit testing framework for Java, created by Erich Gamma |
63 | | - and Kent Beck --> |
| 63 | + and Kent Beck --> |
64 | 64 | <dependency> |
65 | 65 | <groupId>junit</groupId> |
66 | 66 | <artifactId>junit</artifactId> |
|
73 | 73 | <version>2.8</version> |
74 | 74 | </dependency> |
75 | 75 | <!-- Apache Commons Validator provides the building blocks for both client |
76 | | - side validation and server side data validation. It may be used standalone |
77 | | - or with a framework like Struts --> |
| 76 | + side validation and server side data validation. It may be used standalone |
| 77 | + or with a framework like Struts --> |
78 | 78 | <dependency> |
79 | 79 | <groupId>commons-validator</groupId> |
80 | 80 | <artifactId>commons-validator</artifactId> |
81 | 81 | <version>1.4.1</version> |
82 | 82 | </dependency> |
83 | 83 | <!-- The Simple Logging Facade for Java (SLF4J) serves as a simple facade |
84 | | - or abstraction for various logging frameworks --> |
| 84 | + or abstraction for various logging frameworks --> |
85 | 85 | <dependency> |
86 | 86 | <groupId>org.slf4j</groupId> |
87 | 87 | <artifactId>slf4j-api</artifactId> |
|
163 | 163 | </executions> |
164 | 164 | </plugin> |
165 | 165 | <plugin> |
166 | | - <groupId>org.apache.maven.plugins</groupId> |
167 | | - <artifactId>maven-gpg-plugin</artifactId> |
168 | | - <version>1.6</version> |
169 | | - <executions> |
170 | | - <execution> |
171 | | - <id>sign-artifacts</id> |
172 | | - <phase>verify</phase> |
173 | | - <goals> |
174 | | - <goal>sign</goal> |
175 | | - </goals> |
176 | | - </execution> |
177 | | - </executions> |
| 166 | + <groupId>org.apache.maven.plugins</groupId> |
| 167 | + <artifactId>maven-gpg-plugin</artifactId> |
| 168 | + <version>1.6</version> |
| 169 | + <executions> |
| 170 | + <execution> |
| 171 | + <id>sign-artifacts</id> |
| 172 | + <phase>verify</phase> |
| 173 | + <goals> |
| 174 | + <goal>sign</goal> |
| 175 | + </goals> |
| 176 | + </execution> |
| 177 | + </executions> |
178 | 178 | </plugin> |
179 | 179 | <plugin> |
180 | | - <groupId>org.sonatype.plugins</groupId> |
181 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
182 | | - <version>1.6.5</version> |
183 | | - <extensions>true</extensions> |
184 | | - <configuration> |
185 | | - <serverId>ossrh</serverId> |
186 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
187 | | - <autoReleaseAfterClose>false</autoReleaseAfterClose> |
188 | | - </configuration> |
| 180 | + <groupId>org.sonatype.plugins</groupId> |
| 181 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 182 | + <version>1.6.5</version> |
| 183 | + <extensions>true</extensions> |
| 184 | + <configuration> |
| 185 | + <serverId>ossrh</serverId> |
| 186 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 187 | + <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 188 | + </configuration> |
189 | 189 | </plugin> |
190 | 190 | <plugin> |
191 | 191 | <groupId>org.apache.maven.plugins</groupId> |
192 | 192 | <artifactId>maven-jar-plugin</artifactId> |
| 193 | + <version>2.6</version> |
193 | 194 | <executions> |
194 | 195 | <execution> |
195 | 196 | <goals> |
|
0 commit comments