0

我正在尝试从 flink 连接 Hbase 和 Druid。我在 intellij 中添加了以下依赖项。

https://mvnrepository.com/artifact/org.apache.flink/flink-hbase_2.10

<dependency>
    <groupId>org.apache.flink</groupId>
    <artifactId>flink-hbase_2.10</artifactId>
    <version>1.3.2</version>
</dependency>

https://github.com/druid-io/tranquility。似乎 maven Central 只有0.8.2版而不是 0.9 版。

<dependency>
  <groupId>io.druid</groupId>
  <artifactId>tranquility-flink_2.11</artifactId>
  <version>0.9.0</version>
</dependency>

但是intellij说没有找到依赖项。如何添加此依赖项?

4

1 回答 1

0

经过大量尝试,我手动添加了库:

  1. 在你的文件中找到你的 pom.xml

  2. 右键单击它--> Maven--> 导入

  3. 等待项目加载:D
  4. 按 ctrl+alt+shift+s(这将打开“项目”窗口。)

然后点击绿色+符号导入maven库。

于 2017-10-23T11:01:00.930 回答