linghengqian commented on code in PR #34409:
URL: https://github.com/apache/shardingsphere/pull/34409#discussion_r1922987539


##########
test/native/pom.xml:
##########
@@ -123,6 +123,10 @@
                     <groupId>org.apache.commons</groupId>
                     <artifactId>commons-pool2</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>*</artifactId>
+                </exclusion>

Review Comment:
   - Actually, it might be better to handle it as follows. Because this 
involves a PR on the unreleased Seata 2.3.0 milestone. See 
https://github.com/apache/incubator-seata/pull/7046 .
   ```xml
   <dependency>
               <groupId>org.apache.seata</groupId>
               <artifactId>seata-all</artifactId>
               <version>${seata.version}</version>
               <scope>test</scope>
               <exclusions>
                   <exclusion>
                       <groupId>org.antlr</groupId>
                       <artifactId>antlr4-runtime</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>commons-lang</groupId>
                       <artifactId>commons-lang</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.commons</groupId>
                       <artifactId>commons-pool2</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.springframework</groupId>
                       <artifactId>spring-webmvc</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
   ```



-- 
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]

Reply via email to