plugin: Fix phoenix conflict (#109)

This commit is contained in:
qianmoQ 2022-10-28 00:21:04 +08:00 committed by GitHub
commit dd5551e801
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 45 additions and 15 deletions

View File

@ -32,51 +32,54 @@ Here are some of the major database solutions that are supported:
<p align="center">
<a href="https://clickhouse.com" target="_blank">
<img src="assets/plugin/clickhouse.png" alt="ClickHouse" height="50" />
</a>
</a>&nbsp;
<a href="https://www.mysql.com" target="_blank">
<img src="assets/plugin/mysql.png" alt="MySQL" height="50"/>
</a>
</a>&nbsp;
<a href="https://prestodb.io/" target="_blank">
<img src="assets/plugin/presto.png" alt="Presto" height="50"/>
</a>
</a>&nbsp;
<a href="https://redis.io/" target="_blank">
<img src="assets/plugin/redis.png" alt="Redis" height="50"/>
</a>
</a>&nbsp;
<a href="https://www.postgresql.org/" target="_blank">
<img src="assets/plugin/postgresql.png" alt="PostgreSQL" height="50"/>
</a>
</a>&nbsp;
<a href="https://trino.io/" target="_blank">
<img src="assets/plugin/trino.png" alt="Trino" height="50"/>
</a>
</a>&nbsp;
<a href="https://www.elastic.co/" target="_blank">
<img src="assets/plugin/elasticsearch.png" alt="ElasticSearch" height="50" />
</a>
</a>&nbsp;
<a href="https://druid.apache.org/" target="_blank">
<img src="assets/plugin/druid.png" alt="Druid" height="50" />
</a>
</a>&nbsp;
<a href="https://kyuubi.apache.org/" target="_blank">
<img src="assets/plugin/kyuubi.png" alt="Kyuubi" height="50"/>
</a>
</a>&nbsp;
<a href="https://hive.apache.org/" target="_blank">
<img src="assets/plugin/hive.png" alt="Hive" height="50" />
</a>
</a>&nbsp;
<a href="https://kylin.apache.org" target="_blank">
<img src="assets/plugin/kylin.png" alt="Kylin" height="50" />
</a>
</a>&nbsp;
<a href="https://ignite.apache.org/" target="_blank">
<img src="assets/plugin/ignite.png" alt="Ignite" height="50" />
</a>
</a>&nbsp;
<a href="https://www.ibm.com/db2/" target="_blank">
<img src="assets/plugin/ibmdb2.png" alt="IBM DB2" height="50" />
</a>
</a>&nbsp;
<a href="https://www.mongodb.com/" target="_blank">
<img src="assets/plugin/mongodb.png" alt="MongoDB" height="50" />
</a>
</a>&nbsp;
<a href="https://www.dremio.com/" target="_blank">
<img src="assets/plugin/dremio.png" alt="Dremio" height="50" />
</a>
</a>&nbsp;
<a href="https://www.monetdb.org/" target="_blank">
<img src="assets/plugin/monetdb.png" alt="MonetDB" height="50" />
</a>&nbsp;
<a href="https://phoenix.apache.org/" target="_blank">
<img src="assets/plugin/phoenix.png" alt="Phoenix" height="50" />
</a>
</p>

BIN
assets/plugin/phoenix.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -32,6 +32,28 @@
<groupId>org.apache.phoenix</groupId>
<artifactId>phoenix-core</artifactId>
<version>${phoenix.version}</version>
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.mortbay.jetty</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<artifactId>servlet-api</artifactId>
<groupId>javax.servlet</groupId>
</exclusion>
<exclusion>
<artifactId>slf4j-log4j12</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
<exclusion>
<groupId>tomcat</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

View File

@ -169,6 +169,11 @@
<artifactId>datacap-plugin-jdbc-monetdb</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
<artifactId>datacap-plugin-jdbc-phoenix</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>