linghengqian commented on issue #30756: URL: https://github.com/apache/shardingsphere/issues/30756#issuecomment-2034454322
- This sounds like it's due to a dependency conflict, try what https://github.com/apache/shardingsphere/issues/30318#issuecomment-1968268853 mentioned, explicitly specifying the version of the JAXB implementation. ```xml <dependency> <groupId>org.apache.shardingsphere</groupId> <artifactId>shardingsphere-jdbc-core</artifactId> <version>5.4.1</version> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> <version>2.3.9</version> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-core</artifactId> <version>2.3.0.1</version> </dependency> <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> <version>2.3.9</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>1.33</version> </dependency> ``` - On shardingsphere 5.4.2-SNAPSHOT/5.5.0 you no longer need to do this as use of the JAXB API has been removed in #29384 . -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
