|
1 | 1 | <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/xsd/maven-4.0.0.xsd">
|
2 |
| - <modelVersion>4.0.0</modelVersion> |
| 2 | + <modelVersion>4.0.0</modelVersion> |
3 | 3 |
|
4 |
| - <parent> |
5 |
| - <groupId>net.wasdev.maven.parent</groupId> |
6 |
| - <artifactId>parent</artifactId> |
7 |
| - <version>1.4</version> |
8 |
| - <relativePath /> |
9 |
| - </parent> |
| 4 | + <parent> |
| 5 | + <groupId>net.wasdev.maven.parent</groupId> |
| 6 | + <artifactId>parent</artifactId> |
| 7 | + <version>1.4</version> |
| 8 | + <relativePath /> |
| 9 | + </parent> |
10 | 10 |
|
11 |
| - <groupId>io.openliberty.tools</groupId> |
12 |
| - <artifactId>ci.common</artifactId> |
13 |
| - <version>1.8.23-SNAPSHOT</version> |
14 |
| - <packaging>jar</packaging> |
| 11 | + <groupId>io.openliberty.tools</groupId> |
| 12 | + <artifactId>ci.common</artifactId> |
| 13 | + <version>1.8.23-SNAPSHOT</version> |
| 14 | + <packaging>jar</packaging> |
15 | 15 |
|
16 |
| - <name>ci.common</name> |
| 16 | + <name>ci.common</name> |
17 | 17 |
|
18 |
| - <licenses> |
19 |
| - <license> |
20 |
| - <name>The Apache Software License, Version 2.0</name> |
21 |
| - <url>https://raw.github.com/openliberty/ci.common/main/LICENSE</url> |
22 |
| - <distribution>repo</distribution> |
23 |
| - </license> |
24 |
| - </licenses> |
| 18 | + <licenses> |
| 19 | + <license> |
| 20 | + <name>The Apache Software License, Version 2.0</name> |
| 21 | + <url>https://raw.github.com/openliberty/ci.common/main/LICENSE</url> |
| 22 | + <distribution>repo</distribution> |
| 23 | + </license> |
| 24 | + </licenses> |
25 | 25 |
|
26 |
| - <scm> |
27 |
| - < connection>scm:git: [email protected]:openliberty/ci.maven.git</ connection> |
28 |
| - < developerConnection>scm:git: [email protected]:openliberty/ci.common.git</ developerConnection> |
29 |
| - < url> [email protected]:openliberty/ci.common.git</ url> |
30 |
| - <tag>HEAD</tag> |
31 |
| - </scm> |
| 26 | + <scm> |
| 27 | + < connection>scm:git: [email protected]:openliberty/ci.maven.git</ connection> |
| 28 | + < developerConnection>scm:git: [email protected]:openliberty/ci.common.git</ developerConnection> |
| 29 | + < url> [email protected]:openliberty/ci.common.git</ url> |
| 30 | + <tag>HEAD</tag> |
| 31 | + </scm> |
32 | 32 |
|
33 |
| - <properties> |
34 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
35 |
| - <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
36 |
| - <maven.compiler.source>1.7</maven.compiler.source> |
37 |
| - <maven.compiler.target>1.7</maven.compiler.target> |
38 |
| - </properties> |
| 33 | + <properties> |
| 34 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 35 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 36 | + <maven.compiler.source>1.7</maven.compiler.source> |
| 37 | + <maven.compiler.target>1.7</maven.compiler.target> |
| 38 | + </properties> |
39 | 39 |
|
40 |
| - <dependencies> |
41 |
| - <dependency> |
42 |
| - <groupId>junit</groupId> |
43 |
| - <artifactId>junit</artifactId> |
44 |
| - <version>4.13.1</version> |
45 |
| - <scope>test</scope> |
46 |
| - </dependency> |
| 40 | + <dependencies> |
| 41 | + <dependency> |
| 42 | + <groupId>junit</groupId> |
| 43 | + <artifactId>junit</artifactId> |
| 44 | + <version>4.13.2</version> |
| 45 | + <scope>test</scope> |
| 46 | + </dependency> |
47 | 47 | <dependency>
|
48 | 48 | <groupId>commons-io</groupId>
|
49 | 49 | <artifactId>commons-io</artifactId>
|
50 |
| - <version>2.8.0</version> |
| 50 | + <version>2.11.0</version> |
51 | 51 | </dependency>
|
52 | 52 | <dependency>
|
53 | 53 | <groupId>javax.xml.bind</groupId>
|
54 | 54 | <artifactId>jaxb-api</artifactId>
|
55 |
| - <version>2.2.12</version> |
| 55 | + <version>2.3.1</version> |
56 | 56 | <scope>runtime</scope>
|
57 | 57 | </dependency>
|
58 | 58 | <dependency>
|
59 | 59 | <groupId>io.openliberty.tools</groupId>
|
60 | 60 | <artifactId>liberty-ant-tasks</artifactId>
|
61 |
| - <version>1.9.10</version> |
| 61 | + <version>1.9.11</version> |
62 | 62 | </dependency>
|
63 | 63 | <dependency>
|
64 | 64 | <groupId>org.apache.maven</groupId>
|
65 | 65 | <artifactId>maven-artifact</artifactId>
|
66 | 66 | <version>3.6.3</version>
|
67 | 67 | </dependency>
|
68 |
| - </dependencies> |
| 68 | + </dependencies> |
69 | 69 | </project>
|
0 commit comments