99 lines
4.3 KiB
XML
99 lines
4.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
<parent>
|
||
<artifactId>tmerclub-common</artifactId>
|
||
<groupId>com.moyuer.cloud</groupId>
|
||
<version>0.0.1</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<artifactId>tmerclub-common-sharding-proxy</artifactId>
|
||
<description>因为shardingsphere proxy分库分表的规则需要class来指定,所以这里面的这个jar是专门给shardingsphere proxy中间件去写插件的</description>
|
||
<packaging>jar</packaging>
|
||
|
||
|
||
<dependencies>
|
||
|
||
<dependency>
|
||
<groupId>org.apache.shardingsphere</groupId>
|
||
<artifactId>shardingsphere-sharding-api</artifactId>
|
||
<version>5.4.1</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.apache.shardingsphere</groupId>
|
||
<artifactId>shardingsphere-infra-binder</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>org.apache.shardingsphere</groupId>
|
||
<artifactId>shardingsphere-infra-common</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.shardingsphere</groupId>
|
||
<artifactId>shardingsphere-infra-common</artifactId>
|
||
<version>5.4.1</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.apache.shardingsphere</groupId>
|
||
<artifactId>shardingsphere-infra-util</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>org.apache.shardingsphere</groupId>
|
||
<artifactId>shardingsphere-infra-database-mysql</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>org.apache.shardingsphere</groupId>
|
||
<artifactId>shardingsphere-infra-database-mariadb</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>org.apache.shardingsphere</groupId>
|
||
<artifactId>shardingsphere-infra-database-postgresql</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>org.apache.shardingsphere</groupId>
|
||
<artifactId>shardingsphere-infra-database-opengauss</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>org.apache.shardingsphere</groupId>
|
||
<artifactId>shardingsphere-infra-database-oracle</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>org.apache.shardingsphere</groupId>
|
||
<artifactId>shardingsphere-infra-database-sqlserver</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>org.apache.shardingsphere</groupId>
|
||
<artifactId>shardingsphere-infra-database-h2</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>org.apache.shardingsphere</groupId>
|
||
<artifactId>shardingsphere-infra-database-sql92</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>org.apache.shardingsphere</groupId>
|
||
<artifactId>shardingsphere-infra-data-source-pool-hikari</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>org.apache.shardingsphere</groupId>
|
||
<artifactId>shardingsphere-parser-sql-engine</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.shardingsphere</groupId>
|
||
<artifactId>shardingsphere-infra-spi</artifactId>
|
||
<version>5.4.1</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.apache.shardingsphere</groupId>
|
||
<artifactId>shardingsphere-infra-exception-core</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
</project>
|