Hi,

I am currently using Spring boot 2.7.3. I tried to upgrade from spring cloud dependencies 2021.0.3 to 2021.0.4.

After this upgrade the commons-io dependency seems to be removed.

The import of IOUtils fails cause "io"-dir is not found. import org.apache.commons.io.IOUtils;

I have to seperately install the commons-io by myself:

commons-io commons-io 2.11.0

This was working with 2021.0.3

KR Max

Comment From: wilkinsona

Spring Cloud is managed as a number of separate projects in the https://github.com/spring-cloud organization on GitHub. You should use your build system (Maven's dependency:tree or Gradle's dependencyInsight) to determine why commons-io was on the classpath when using Spring Cloud 2021.0.3 and why it's no longer there when using 2021.0.4. It may be due to change in Spring Cloud itself or one of its dependencies.