You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by GitBox <gi...@apache.org> on 2020/03/23 03:18:20 UTC

[GitHub] [incubator-shardingsphere] cherrylzhao commented on issue #4882: How to integrate sharding-proxy with seata

cherrylzhao commented on issue #4882: How to integrate sharding-proxy with seata
URL: https://github.com/apache/incubator-shardingsphere/issues/4882#issuecomment-602363633
 
 
   hi, you should build the sharding-proxy by yourself from source code. 
   1. git clone shardingshpere project
   2. add  seata dependencies in the pom.xml of sharding-proxy-distribution like this
   ```
           <dependency>
               <groupId>io.seata</groupId>
               <artifactId>seata-rm-datasource</artifactId>
               <scope>runtime</scope>
           </dependency>
           <dependency>
               <groupId>io.seata</groupId>
               <artifactId>seata-tm</artifactId>
               <scope>runtime</scope>
           </dependency>
           <dependency>
               <groupId>io.seata</groupId>
               <artifactId>seata-codec-all</artifactId>
               <scope>runtime</scope>
           </dependency>
           <dependency>
               <groupId>mysql</groupId>
               <artifactId>mysql-connector-java</artifactId>
               <version>${mysql-connector-java.version}</version>
               <scope>runtime</scope>
   ```
   3. then execute mvn install -Prelease

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services