zt9788 commented on issue #13822:
URL:
https://github.com/apache/shardingsphere/issues/13822#issuecomment-981070741
@strongduanmu I use shardingsphere-jdbc-core-spring-boot-starter and I
exclusion like this:
At present, the program seems to work normally, but I'm not sure whether
there will be potential exceptions. At present, the size of the package is
about 20M
```
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>shardingsphere-jdbc-core-spring-boot-starter</artifactId>
<version>5.0.0</version>
<exclusions>
<exclusion>
<artifactId>shardingsphere-sql-parser-oracle</artifactId>
<groupId>org.apache.shardingsphere</groupId>
</exclusion>
<exclusion>
<artifactId>shardingsphere-sql-parser-postgresql</artifactId>
<groupId>org.apache.shardingsphere</groupId>
</exclusion>
<exclusion>
<artifactId>shardingsphere-sql-parser-sqlserver</artifactId>
<groupId>org.apache.shardingsphere</groupId>
</exclusion>
<exclusion>
<artifactId>elasticjob-api</artifactId>
<groupId>org.apache.shardingsphere.elasticjob</groupId>
</exclusion>
<exclusion>
<artifactId>elasticjob-lite-core</artifactId>
<groupId>org.apache.shardingsphere.elasticjob</groupId>
</exclusion>
<exclusion>
<artifactId>elasticjob-registry-center</artifactId>
<groupId>org.apache.shardingsphere.elasticjob</groupId>
</exclusion>
<exclusion>
<artifactId>shardingsphere-encrypt-api</artifactId>
<groupId>org.apache.shardingsphere</groupId>
</exclusion>
<exclusion>
<artifactId>shardingsphere-encrypt-core</artifactId>
<groupId>org.apache.shardingsphere</groupId>
</exclusion>
<exclusion>
<artifactId>shardingsphere-sql-parser-sql92</artifactId>
<groupId>org.apache.shardingsphere</groupId>
</exclusion>
<exclusion>
<artifactId>shardingsphere-cluster-mode-core</artifactId>
<groupId>org.apache.shardingsphere</groupId>
</exclusion>
<exclusion>
<artifactId>shardingsphere-cluster-mode-repository-api</artifactId>
<groupId>org.apache.shardingsphere</groupId>
</exclusion>
<exclusion>
<artifactId>shardingsphere-encrypt-spring-boot-starter</artifactId>
<groupId>org.apache.shardingsphere</groupId>
</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]