|
2 | 2 | <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"> |
3 | 3 |
|
4 | 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | + |
5 | 6 | <parent> |
6 | | - <groupId>org.sonatype.oss</groupId> |
7 | | - <artifactId>oss-parent</artifactId> |
8 | | - <version>7</version> |
| 7 | + <artifactId>cybersource-sdk-master</artifactId> |
| 8 | + <groupId>com.cybersource</groupId> |
| 9 | + <version>6.2.12-SNAPSHOT</version> |
9 | 10 | </parent> |
| 11 | + |
10 | 12 | <groupId>com.cybersource</groupId> |
11 | 13 | <artifactId>cybersource-sdk-java</artifactId> |
12 | 14 | <version>6.2.12-SNAPSHOT</version> |
13 | 15 | <name>cybersource-sdk-java</name> |
14 | 16 | <description>Simple Order API Client</description> |
15 | 17 | <url>http://www.cybersource.com</url> |
| 18 | + |
16 | 19 | <licenses> |
17 | 20 | <license> |
18 | 21 | <name>CyberSource SDK License Agreement</name> |
|
34 | 37 | </developer> |
35 | 38 | </developers> |
36 | 39 |
|
37 | | - <properties> |
38 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
39 | | - <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
40 | | - </properties> |
41 | 40 | <packaging>jar</packaging> |
42 | 41 |
|
43 | 42 | <profiles> |
|
219 | 218 | <dependency> |
220 | 219 | <groupId>junit</groupId> |
221 | 220 | <artifactId>junit</artifactId> |
222 | | - <version>4.13.1</version> |
| 221 | + <version>${junit.version}</version> |
223 | 222 | <scope>test</scope> |
224 | 223 | </dependency> |
225 | 224 | <dependency> |
226 | 225 | <groupId>xalan</groupId> |
227 | 226 | <artifactId>xalan</artifactId> |
228 | | - <version>2.7.2</version> |
| 227 | + <version>${xalan.version}</version> |
229 | 228 | </dependency> |
230 | 229 | <dependency> |
231 | 230 | <groupId>org.apache.santuario</groupId> |
232 | 231 | <artifactId>xmlsec</artifactId> |
233 | | - <version>2.3.0</version> |
| 232 | + <version>${xmlsec.version}</version> |
234 | 233 | </dependency> |
235 | 234 | <dependency> |
236 | 235 | <groupId>org.apache.httpcomponents</groupId> |
237 | 236 | <artifactId>httpclient</artifactId> |
238 | | - <version>4.5.13</version> |
| 237 | + <version>${httpclient.version}</version> |
239 | 238 | <exclusions> |
240 | 239 | <exclusion> |
241 | 240 | <groupId>commons-logging</groupId> |
|
246 | 245 | <dependency> |
247 | 246 | <groupId>org.bouncycastle</groupId> |
248 | 247 | <artifactId>bcprov-jdk15on</artifactId> |
249 | | - <version>1.61</version> |
| 248 | + <version>${bouncycastle.version}</version> |
250 | 249 | </dependency> |
251 | 250 | <dependency> |
252 | 251 | <groupId>org.apache.wss4j</groupId> |
253 | 252 | <artifactId>wss4j-ws-security-common</artifactId> |
254 | | - <version>2.4.1</version> |
| 253 | + <version>${wss4j.version}</version> |
255 | 254 | </dependency> |
256 | 255 | <dependency> |
257 | 256 | <groupId>org.apache.wss4j</groupId> |
258 | 257 | <artifactId>wss4j-ws-security-dom</artifactId> |
259 | | - <version>2.4.1</version> |
| 258 | + <version>${wss4j.version}</version> |
260 | 259 | </dependency> |
261 | 260 | <dependency> |
262 | 261 | <groupId>org.apache.commons</groupId> |
263 | 262 | <artifactId>commons-lang3</artifactId> |
264 | | - <version>3.4</version> |
| 263 | + <version>${commonlang3.version}</version> |
265 | 264 | </dependency> |
266 | 265 | <dependency> |
267 | 266 | <groupId>org.mockito</groupId> |
268 | 267 | <artifactId>mockito-all</artifactId> |
269 | | - <version>1.10.19</version> |
| 268 | + <version>${mockito.version}</version> |
270 | 269 | <scope>test</scope> |
271 | 270 | </dependency> |
272 | 271 | <dependency> |
273 | | - <groupId>org.apache.wss4j</groupId> |
274 | | - <artifactId>wss4j-ws-security-dom</artifactId> |
275 | | - <version>2.4.1</version> |
276 | | - <scope>compile</scope> |
| 272 | + <groupId>org.slf4j</groupId> |
| 273 | + <artifactId>slf4j-api</artifactId> |
| 274 | + <version>${slf4j.version}</version> |
| 275 | + </dependency> |
| 276 | + <dependency> |
| 277 | + <groupId>org.slf4j</groupId> |
| 278 | + <artifactId>slf4j-simple</artifactId> |
| 279 | + <version>${slf4j.version}</version> |
277 | 280 | </dependency> |
278 | 281 | </dependencies> |
279 | 282 | </project> |
|
0 commit comments