mirror of https://github.com/apache/druid.git
Upgrade commons-io to 2.17.0 (#17227)
This commit is contained in:
parent
e41648f5bf
commit
93b5a8326b
|
@ -50,8 +50,8 @@ import org.junit.jupiter.api.Test;
|
|||
import org.junit.jupiter.api.io.TempDir;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.UncheckedIOException;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
import java.nio.file.Path;
|
||||
import java.nio.file.Paths;
|
||||
|
@ -147,7 +147,7 @@ public class DruidPeonClientIntegrationTest
|
|||
.map(Integer::parseInt)
|
||||
.collect(Collectors.toList()));
|
||||
}
|
||||
catch (IOException e) {
|
||||
catch (UncheckedIOException e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
});
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
</parent>
|
||||
|
||||
<properties>
|
||||
<commons-io.version>2.11.0</commons-io.version>
|
||||
<commons-io.version>2.17.0</commons-io.version>
|
||||
<okio.version>3.6.0</okio.version>
|
||||
</properties>
|
||||
|
||||
|
|
|
@ -546,13 +546,13 @@ name: Apache Commons IO
|
|||
license_category: binary
|
||||
module: java-core
|
||||
license_name: Apache License version 2.0
|
||||
version: 2.11.0
|
||||
version: 2.17.0
|
||||
libraries:
|
||||
- commons-io: commons-io
|
||||
notices:
|
||||
- commons-io: |
|
||||
Apache Commons IO
|
||||
Copyright 2002-2021 The Apache Software Foundation
|
||||
Copyright 2002-2024 The Apache Software Foundation
|
||||
|
||||
---
|
||||
|
||||
|
@ -2521,20 +2521,6 @@ notices:
|
|||
|
||||
---
|
||||
|
||||
name: Apache Commons IO
|
||||
license_category: binary
|
||||
module: hadoop-client
|
||||
license_name: Apache License version 2.0
|
||||
version: 2.4
|
||||
libraries:
|
||||
- commons-io: commons-io
|
||||
notices:
|
||||
- commons-io: |
|
||||
Apache Commons IO
|
||||
Copyright 2002-2012 The Apache Software Foundation
|
||||
|
||||
---
|
||||
|
||||
name: Apache Commons Logging
|
||||
license_category: binary
|
||||
module: hadoop-client
|
||||
|
|
Loading…
Reference in New Issue