Skip to content

Commit b5b0586

Browse files
authored
Merge pull request #1835 from cherylking/bumpCommonsIO
update commons-io version
2 parents 7dfa0c4 + d5b088d commit b5b0586

File tree

15 files changed

+17
-17
lines changed

15 files changed

+17
-17
lines changed

liberty-maven-plugin/src/it/assembly-archive-update-it/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<dependency>
2323
<groupId>commons-io</groupId>
2424
<artifactId>commons-io</artifactId>
25-
<version>2.8.0</version>
25+
<version>2.14.0</version>
2626
</dependency>
2727
</dependencies>
2828

liberty-maven-plugin/src/it/binary-scanner-it/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>commons-io</groupId>
3939
<artifactId>commons-io</artifactId>
40-
<version>2.10.0</version>
40+
<version>2.14.0</version>
4141
</dependency>
4242
<dependency>
4343
<groupId>org.codehaus.plexus</groupId>

liberty-maven-plugin/src/it/dev-container-it/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<dependency>
3636
<groupId>commons-io</groupId>
3737
<artifactId>commons-io</artifactId>
38-
<version>2.11.0</version>
38+
<version>2.14.0</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>org.codehaus.plexus</groupId>

liberty-maven-plugin/src/it/dev-it/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<dependency>
3636
<groupId>commons-io</groupId>
3737
<artifactId>commons-io</artifactId>
38-
<version>2.11.0</version>
38+
<version>2.14.0</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>org.codehaus.plexus</groupId>

liberty-maven-plugin/src/it/dev-skip-install-feature-it/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<dependency>
3636
<groupId>commons-io</groupId>
3737
<artifactId>commons-io</artifactId>
38-
<version>2.11.0</version>
38+
<version>2.14.0</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>org.codehaus.plexus</groupId>

liberty-maven-plugin/src/it/ear-project-it/SampleEAR-classifier-app/src/test/java/net/wasdev/wlp/maven/test/it/LooseConfigTestIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public void testLooseApplicationFileContent() throws Exception {
8383
nodes = (NodeList) xPath.compile(expression).evaluate(inputDoc, XPathConstants.NODESET);
8484
assertEquals("Number of <archive/> element ==>", 3, nodes.getLength());
8585
// test runtime scope dependency to be included in the ?WEB-INF/lib
86-
assertEquals("file targetInArchive attribute value", "/WEB-INF/lib/commons-io-2.11.0.jar",
86+
assertEquals("file targetInArchive attribute value", "/WEB-INF/lib/commons-io-2.14.0.jar",
8787
nodes.item(2).getAttributes().getNamedItem("targetInArchive").getNodeValue());
8888
}
8989
}

liberty-maven-plugin/src/it/ear-project-it/SampleEAR/src/test/java/net/wasdev/wlp/maven/test/it/LooseConfigTestIT.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ public void testLooseApplicationFileContent() throws Exception {
8585
nodes = (NodeList) xPath.compile(expression).evaluate(inputDoc, XPathConstants.NODESET);
8686
assertEquals("Number of <archive/> element ==>", 5, nodes.getLength());
8787
// test runtime scope dependency to be included in the ?WEB-INF/lib
88-
assertEquals("file targetInArchive attribute value", "/WEB-INF/lib/commons-io-2.11.0.jar",
88+
assertEquals("file targetInArchive attribute value", "/WEB-INF/lib/commons-io-2.14.0.jar",
8989
nodes.item(2).getAttributes().getNamedItem("targetInArchive").getNodeValue());
90-
assertEquals("file targetInArchive attribute value", "/WEB-INF/lib/commons-io-2.11.0.jar",
90+
assertEquals("file targetInArchive attribute value", "/WEB-INF/lib/commons-io-2.14.0.jar",
9191
nodes.item(4).getAttributes().getNamedItem("targetInArchive").getNodeValue());
9292
}
9393
}

liberty-maven-plugin/src/it/ear-project-it/SampleWLP/src/test/java/net/wasdev/wlp/maven/test/it/LooseConfigTestIT.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ public void testLooseApplicationFileContent() throws Exception {
8484
nodes = (NodeList) xPath.compile(expression).evaluate(inputDoc, XPathConstants.NODESET);
8585
assertEquals("Number of <archive/> element ==>", 5, nodes.getLength());
8686
// test runtime scope dependency to be included in the ?WEB-INF/lib
87-
assertEquals("file targetInArchive attribute value", "/WEB-INF/lib/commons-io-2.11.0.jar",
87+
assertEquals("file targetInArchive attribute value", "/WEB-INF/lib/commons-io-2.14.0.jar",
8888
nodes.item(2).getAttributes().getNamedItem("targetInArchive").getNodeValue());
89-
assertEquals("file targetInArchive attribute value", "/WEB-INF/lib/commons-io-2.11.0.jar",
89+
assertEquals("file targetInArchive attribute value", "/WEB-INF/lib/commons-io-2.14.0.jar",
9090
nodes.item(4).getAttributes().getNamedItem("targetInArchive").getNodeValue());
9191
}
9292
}

liberty-maven-plugin/src/it/ear-project-it/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<dependency>
4141
<groupId>commons-io</groupId>
4242
<artifactId>commons-io</artifactId>
43-
<version>2.11.0</version>
43+
<version>2.14.0</version>
4444
<scope>runtime</scope>
4545
</dependency>
4646
<dependency>

liberty-maven-plugin/src/it/generate-features-it/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<dependency>
4040
<groupId>commons-io</groupId>
4141
<artifactId>commons-io</artifactId>
42-
<version>2.10.0</version>
42+
<version>2.14.0</version>
4343
</dependency>
4444
<dependency>
4545
<groupId>org.codehaus.plexus</groupId>

0 commit comments

Comments
 (0)