ListenQ commented on issue #30300:
URL:
https://github.com/apache/shardingsphere/issues/30300#issuecomment-1972882367
Yes, it's true that there's no need to do anything else, it's my project
engineering, shardingsphere-transaction-xa-core is conflicting with the
atomikos version in springboot.
Configure the solution in pom.xml like this:
```
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.atomikos</groupId>
<artifactId>transactions-jta</artifactId>
<version>6.0.0</version>
</dependency>
<dependency>
<groupId>com.atomikos</groupId>
<artifactId>transactions-jdbc</artifactId>
<version>6.0.0</version>
</dependency>
</dependencies>
</dependencyManagement>
```
--
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]