We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When upgrade to quarkus 2.15.x which depends on antlr 4.10.1, the application is failing to star with
2.15.x
4.10.1
java.io.InvalidClassException: org.antlr.v4.runtime.atn.ATN; Could not deserialize ATN with version 3 (expected 4).
The workaround is to stick with the old antlr version 4.9.2 in the application pom.xml which looks like sharding-sphere has.
4.9.2
pom.xml
<properties> <antlr.version>4.9.2</antlr.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>${quarkus.platform.group-id}</groupId> <artifactId>${quarkus.platform.artifact-id}</artifactId> <version>${quarkus.platform.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> <version>${antlr.version}</version> </dependency> </dependencies> </dependencyManagement>
And it could be possible for upgrade antlr in sharding-sphere.
The text was updated successfully, but these errors were encountered:
It should be fixed in shardingsphere 5.3.2
5.3.2
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
When upgrade to quarkus
2.15.x
which depends on antlr4.10.1
, the application is failing to star withThe workaround is to stick with the old antlr version
4.9.2
in the applicationpom.xml
which looks like sharding-sphere has.And it could be possible for upgrade antlr in sharding-sphere.
The text was updated successfully, but these errors were encountered: