Skip to content

Commit 4774f69

Browse files
authored
updated versions of third party dependencies (#183)
* updated versions of dependencies for PLS
1 parent b3abcdc commit 4774f69

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

imagetool/src/test/java/com/oracle/weblogic/imagetool/cli/cache/AddEntryTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ void testMissingParameters() {
4444
@Test
4545
void testMissingKey() {
4646
ImageTool.run(new AddEntry(), printStream, printStream, "--value", "some_value");
47-
assertTrue(new String(byteArrayOutputStream.toByteArray()).contains("Missing required option '--key=<key>'"));
47+
assertTrue(new String(byteArrayOutputStream.toByteArray()).contains("Missing required option: '--key=<key>'"));
4848
}
4949

5050
@Test
5151
void testMissingValue() {
5252
ImageTool.run(new AddEntry(), printStream, printStream, "--key", "some_key");
5353
assertTrue(new String(byteArrayOutputStream.toByteArray())
54-
.contains("Missing required option '--value=<location>'"));
54+
.contains("Missing required option: '--value=<location>'"));
5555
}
5656

5757
@Test

imagetool/src/test/java/com/oracle/weblogic/imagetool/cli/cache/AddInstallerEntryTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ void testMissingVersion() {
5555
ImageTool.run(new AddInstallerEntry(), printStream, printStream,
5656
"--type", InstallerType.WLS.toString(), "--path", "/path/to/a/file");
5757
assertTrue(new String(byteArrayOutputStream.toByteArray()).contains(
58-
"Missing required option '--version=<version>'"));
58+
"Missing required option: '--version=<version>'"));
5959
}
6060

6161
@Test

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,22 +50,22 @@
5050
<dependency>
5151
<groupId>org.apache.httpcomponents</groupId>
5252
<artifactId>fluent-hc</artifactId>
53-
<version>4.5.6</version>
53+
<version>4.5.12</version>
5454
</dependency>
5555
<dependency>
5656
<groupId>org.apache.httpcomponents</groupId>
5757
<artifactId>httpmime</artifactId>
58-
<version>4.5.6</version>
58+
<version>4.5.12</version>
5959
</dependency>
6060
<dependency>
6161
<groupId>info.picocli</groupId>
6262
<artifactId>picocli</artifactId>
63-
<version>4.1.4</version>
63+
<version>4.3.2</version>
6464
</dependency>
6565
<dependency>
6666
<groupId>org.json</groupId>
6767
<artifactId>json</artifactId>
68-
<version>20180813</version>
68+
<version>20200518</version>
6969
</dependency>
7070
<dependency>
7171
<groupId>org.junit.jupiter</groupId>
@@ -90,7 +90,7 @@
9090
<dependency>
9191
<groupId>org.jetbrains</groupId>
9292
<artifactId>annotations</artifactId>
93-
<version>19.0.0</version>
93+
<version>18.0.0</version>
9494
</dependency>
9595
</dependencies>
9696
</dependencyManagement>

0 commit comments

Comments
 (0)