Fixes according latest upgrades
* Add `--add-opens` to `asciidoctor` Gradle task to avoid compilation warning * Upgrade to Kotlin `1.6.10` and modify its Gradle task respective * Add empty impl for new `AnnotationMetadataAdapter.getDeclaredMethods()` * Parse HTTP methods to new `String methodNames` property of the `RequestMapping` since `HttpMethod` is not an `enum` anymore. * Ignore JDBC tests which rely on a map property resolution: the `[]` placeholder is not handled in the latest SF anymore. * Fix `WebFluxInboundEndpoint` for deprecations
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2021 the original author or authors.
|
||||
* Copyright 2021-2022 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -84,7 +84,7 @@ class KotlinFileAggregatorTests {
|
||||
this.fileSplitterAggregatorFlow.send(GenericMessage(file))
|
||||
val receive = this.resultChannel.receive(10000)
|
||||
assertThat(receive).isNotNull()
|
||||
assertThat(receive.headers)
|
||||
assertThat(receive!!.headers)
|
||||
.all {
|
||||
contains(FileHeaders.FILENAME, "foo.txt")
|
||||
contains(FileHeaders.LINE_COUNT, 3L)
|
||||
|
||||
Reference in New Issue
Block a user