diff options
author | Thomas <> | 2022-01-10 16:00:22 +0100 |
---|---|---|
committer | Thomas <> | 2022-01-10 16:00:22 +0100 |
commit | 31b5c646a4c51e8706d0cf884223a2fe95ee5bba (patch) | |
tree | a2167392c947664b4681a85109422d95e6eabf79 | |
parent | 3b698599040807c889a2a87ff041f516d5626231 (diff) | |
download | National_eIDAS_Gateway-31b5c646a4c51e8706d0cf884223a2fe95ee5bba.tar.gz National_eIDAS_Gateway-31b5c646a4c51e8706d0cf884223a2fe95ee5bba.tar.bz2 National_eIDAS_Gateway-31b5c646a4c51e8706d0cf884223a2fe95ee5bba.zip |
chore(core): update commons-io to latest version and jetty to lastest 9.x version
-rw-r--r-- | pom.xml | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -35,6 +35,7 @@ <org.apache.commons-lang3.version>3.12.0</org.apache.commons-lang3.version> <org.apache.commons-text.version>1.9</org.apache.commons-text.version> <commons-collections4.version>4.4</commons-collections4.version> + <commons-io.version>2.11.0</commons-io.version> <com.google.guava.version>31.0.1-jre</com.google.guava.version> <joda-time.version>2.10.13</joda-time.version> @@ -52,7 +53,7 @@ <!-- For software testing only --> <json-path.version>2.6.0</json-path.version> - <jetty.version>10.0.7</jetty.version> + <jetty.version>9.4.44.v20210927</jetty.version> <!-- testing --> <junit.version>4.13.2</junit.version> @@ -279,6 +280,11 @@ <version>${org.apache.commons-text.version}</version> </dependency> <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <version>${commons-io.version}</version> + </dependency> + <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${com.google.guava.version}</version> |