mirror of
https://gitee.com/devlive-community/datacap.git
synced 2024-11-30 11:07:41 +08:00
plugin: Fix phoenix conflict (#109)
This commit is contained in:
commit
dd5551e801
33
README.md
33
README.md
@ -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>
|
||||
<a href="https://www.mysql.com" target="_blank">
|
||||
<img src="assets/plugin/mysql.png" alt="MySQL" height="50"/>
|
||||
</a>
|
||||
</a>
|
||||
<a href="https://prestodb.io/" target="_blank">
|
||||
<img src="assets/plugin/presto.png" alt="Presto" height="50"/>
|
||||
</a>
|
||||
</a>
|
||||
<a href="https://redis.io/" target="_blank">
|
||||
<img src="assets/plugin/redis.png" alt="Redis" height="50"/>
|
||||
</a>
|
||||
</a>
|
||||
<a href="https://www.postgresql.org/" target="_blank">
|
||||
<img src="assets/plugin/postgresql.png" alt="PostgreSQL" height="50"/>
|
||||
</a>
|
||||
</a>
|
||||
<a href="https://trino.io/" target="_blank">
|
||||
<img src="assets/plugin/trino.png" alt="Trino" height="50"/>
|
||||
</a>
|
||||
</a>
|
||||
<a href="https://www.elastic.co/" target="_blank">
|
||||
<img src="assets/plugin/elasticsearch.png" alt="ElasticSearch" height="50" />
|
||||
</a>
|
||||
</a>
|
||||
<a href="https://druid.apache.org/" target="_blank">
|
||||
<img src="assets/plugin/druid.png" alt="Druid" height="50" />
|
||||
</a>
|
||||
</a>
|
||||
<a href="https://kyuubi.apache.org/" target="_blank">
|
||||
<img src="assets/plugin/kyuubi.png" alt="Kyuubi" height="50"/>
|
||||
</a>
|
||||
</a>
|
||||
<a href="https://hive.apache.org/" target="_blank">
|
||||
<img src="assets/plugin/hive.png" alt="Hive" height="50" />
|
||||
</a>
|
||||
</a>
|
||||
<a href="https://kylin.apache.org" target="_blank">
|
||||
<img src="assets/plugin/kylin.png" alt="Kylin" height="50" />
|
||||
</a>
|
||||
</a>
|
||||
<a href="https://ignite.apache.org/" target="_blank">
|
||||
<img src="assets/plugin/ignite.png" alt="Ignite" height="50" />
|
||||
</a>
|
||||
</a>
|
||||
<a href="https://www.ibm.com/db2/" target="_blank">
|
||||
<img src="assets/plugin/ibmdb2.png" alt="IBM DB2" height="50" />
|
||||
</a>
|
||||
</a>
|
||||
<a href="https://www.mongodb.com/" target="_blank">
|
||||
<img src="assets/plugin/mongodb.png" alt="MongoDB" height="50" />
|
||||
</a>
|
||||
</a>
|
||||
<a href="https://www.dremio.com/" target="_blank">
|
||||
<img src="assets/plugin/dremio.png" alt="Dremio" height="50" />
|
||||
</a>
|
||||
</a>
|
||||
<a href="https://www.monetdb.org/" target="_blank">
|
||||
<img src="assets/plugin/monetdb.png" alt="MonetDB" height="50" />
|
||||
</a>
|
||||
<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
BIN
assets/plugin/phoenix.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 32 KiB |
@ -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>
|
||||
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user