Skip to content

Commit 9d17454

Browse files
authored
upgrade dependencies to prepare for Legal approvals (#128)
upgrade dependencies to prepare for Legal approvals
1 parent e4bc2a8 commit 9d17454

File tree

3 files changed

+10
-22
lines changed

3 files changed

+10
-22
lines changed

pom.xml

+10-13
Original file line numberDiff line numberDiff line change
@@ -81,35 +81,32 @@
8181
<dependency>
8282
<groupId>org.apache.httpcomponents</groupId>
8383
<artifactId>httpclient</artifactId>
84-
<version>${apache.http.version}</version>
84+
<version>4.5.12</version>
8585
</dependency>
8686
<dependency>
8787
<groupId>org.apache.httpcomponents</groupId>
88-
<artifactId>fluent-hc</artifactId>
89-
<version>${apache.http.version}</version>
88+
<artifactId>httpcore</artifactId>
89+
<version>4.4.13</version>
9090
</dependency>
9191
<dependency>
9292
<groupId>commons-fileupload</groupId>
9393
<artifactId>commons-fileupload</artifactId>
94-
<version>1.3.3</version>
94+
<version>1.4</version>
9595
</dependency>
9696
<dependency>
9797
<groupId>org.yaml</groupId>
9898
<artifactId>snakeyaml</artifactId>
99-
<version>1.19</version>
99+
<version>1.26</version>
100100
</dependency>
101101
<dependency>
102102
<groupId>com.google.code.gson</groupId>
103103
<artifactId>gson</artifactId>
104-
<version>2.8.2</version>
104+
<version>2.8.6</version>
105105
</dependency>
106-
107-
<!-- override transitive dependency to avoid a vulnerability reported in 2.4 -->
108-
109106
<dependency>
110107
<groupId>commons-io</groupId>
111108
<artifactId>commons-io</artifactId>
112-
<version>2.6</version>
109+
<version>2.7</version>
113110
</dependency>
114111

115112
<!-- unit test dependencies -->
@@ -123,19 +120,19 @@
123120
<dependency>
124121
<groupId>com.jayway.jsonpath</groupId>
125122
<artifactId>json-path</artifactId>
126-
<version>2.3.0</version>
123+
<version>2.4.0</version>
127124
<scope>test</scope>
128125
</dependency>
129126
<dependency>
130127
<groupId>org.slf4j</groupId>
131128
<artifactId>slf4j-nop</artifactId>
132-
<version>1.6.0</version>
129+
<version>1.6.4</version>
133130
<scope>test</scope>
134131
</dependency>
135132
<dependency>
136133
<groupId>org.apache.httpcomponents</groupId>
137134
<artifactId>httpmime</artifactId>
138-
<version>${apache.http.version}</version>
135+
<version>4.5.13</version>
139136
</dependency>
140137
<dependency>
141138
<groupId>org.httpunit</groupId>

wls-exporter-core/pom.xml

-5
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,6 @@
2525
<artifactId>httpclient</artifactId>
2626
<scope>provided</scope>
2727
</dependency>
28-
<dependency>
29-
<groupId>org.apache.httpcomponents</groupId>
30-
<artifactId>fluent-hc</artifactId>
31-
<scope>provided</scope>
32-
</dependency>
3328
<dependency>
3429
<groupId>commons-fileupload</groupId>
3530
<artifactId>commons-fileupload</artifactId>

wls-exporter-war/pom.xml

-4
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@
3030
<groupId>org.apache.httpcomponents</groupId>
3131
<artifactId>httpclient</artifactId>
3232
</dependency>
33-
<dependency>
34-
<groupId>org.apache.httpcomponents</groupId>
35-
<artifactId>fluent-hc</artifactId>
36-
</dependency>
3733
<dependency>
3834
<groupId>commons-fileupload</groupId>
3935
<artifactId>commons-fileupload</artifactId>

0 commit comments

Comments
 (0)