Not compatible with Spring Boot 3.2: method Assert.notNull(Object) does not exist
Closed this issue · 2 comments
rschev commented
Describe the bug
When running with Spring Boot 3.2, the application refuses to start. The FileSystemResourceLoader tries to call void org.springframework.util.Assert.notNull(java.lang.Object)
, but the documentation indicates that it needs a second argument.
To Reproduce
Steps to reproduce the behavior:
- Download an empty Spring Boot 3.2 application from start.spring.io
- Add
implementation 'com.github.paulcwarren:spring-content-fs-boot-starter:3.0.6'
to build.gradle ./gradlew bootRun
and see the error.
paulcwarren commented
Thanks @rschev . I believe that @vincenting just fixed this with #1702 . I plan to cut a release this Friday
paulcwarren commented
I believe this is fixed in 3.0.6 and 3.0.7 but let me know if not.