Open
Conversation
version specification, since its already in spring-boot-dependencies
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I tried to update to Spring Boot 2.0.9.RELEASE in combination with Spring cloud Finchley.RELEASE (that should be compatible with Spring Boot 2.0.x: https://spring.io/projects/spring-cloud). This required some maven coordinate changes and some minor source code changes.
Specifying spring-data-releastrain separately, created the following problem when using
mvn clean package -DskipTests && java -jar monolithic/target/monolithic-0.0.1-SNAPSHOT.jar:To fix the spring problem, I tried to update
spring-data-releasetrain.versiontoIngalls-SR23andKay-SR14, or to remove it completely (since its already included in the regular spring boot), but this didn't change the error. The problem indicates thatorg.hibernate.persister.entity.SingleTableEntityPersisterhas a problem, but the class is inorg.hibernate:hibernate-core:jar:5.2.18.Final:compile(which is part of the dependencies, as we can see usingmvn dependency:tree), so I didn't see how to fix this configuring spring.In the end, the only solution I found was updating javassist to
3.30.2-GA.