Skip to content

Commit

Permalink
commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
s7monk committed Jul 9, 2024
1 parent d90734e commit b76b5d5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
8 changes: 8 additions & 0 deletions paimon-web-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ under the License.
<properties>
<hadoop.version>2.8.5</hadoop.version>
<flink.version>1.18.1</flink.version>
<scala.version>2.12</scala.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -247,6 +248,13 @@ under the License.
</exclusions>
</dependency>

<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-table-planner_${scala.version}</artifactId>
<version>${flink.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ public void before() throws Exception {
.port(port)
.enabled(true)
.type("Flink")
.deploymentMode("flink-sql-gateway")
.build();
boolean res = clusterService.save(cluster);
assertTrue(res);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ public void testCreateSession() throws Exception {
.port(port)
.enabled(true)
.type("Flink")
.deploymentMode("flink-sql-gateway")
.build();
boolean res = clusterService.save(cluster);
assertTrue(res);
Expand Down

0 comments on commit b76b5d5

Please sign in to comment.