Upgrade dependencies including Gradle

* Fix compatibility with upgraded dependencies
* Move `What's New` for `5.4` to `history`
* Add `XmlUnit` dependency since the latest AssertJ has deprecated its `isXmlEqualTo()`
* Remove `javax.annotation-api` and `apiguardian-api` as redundant dependencies
This commit is contained in:
Artem Bilan
2020-12-02 17:20:46 -05:00
parent cf8591d700
commit bdb3ba8ebd
16 changed files with 195 additions and 202 deletions

View File

@@ -27,8 +27,6 @@ import java.util.function.Function;
import java.util.function.Supplier;
import java.util.stream.Stream;
import javax.annotation.Resource;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
@@ -105,7 +103,7 @@ public class MessagingAnnotationsWithBeanAnnotationTests {
@Autowired
private PollableChannel discardChannel;
@Resource(name = "collector")
@Autowired
private List<Message<?>> collector;
@Autowired(required = false)