Upgrade to support Spring Boot 2.2.

* Remove unused profiles and plugins from the build.
* Update the main README.
This commit is contained in:
Greg Turnquist
2019-03-18 11:29:00 -05:00
parent 54fa3f9d58
commit 9bdef544c6
3 changed files with 56 additions and 191 deletions

View File

@@ -101,7 +101,7 @@ public class ReactiveMongoWebSessionConfigurationTest {
AbstractMongoSessionConverter converter = findMongoSessionConverter(repository);
assertThat(converter).extracting(AbstractMongoSessionConverter::getClass).contains(JdkMongoSessionConverter.class);
assertThat(converter).isOfAnyClassIn(JdkMongoSessionConverter.class);
}
@Test
@@ -116,8 +116,7 @@ public class ReactiveMongoWebSessionConfigurationTest {
AbstractMongoSessionConverter converter = findMongoSessionConverter(repository);
assertThat(converter).extracting(AbstractMongoSessionConverter::getClass)
.contains(JacksonMongoSessionConverter.class);
assertThat(converter).isOfAnyClassIn(JacksonMongoSessionConverter.class);
}
@Test