Skip to content

Commit

Permalink
feat: add a new module ksql-execution for the execution plan interfac…
Browse files Browse the repository at this point in the history
…es (#3125)
  • Loading branch information
rodesai committed Jul 25, 2019
1 parent 7fb0450 commit 3251d25
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 0 deletions.
69 changes: 69 additions & 0 deletions ksql-execution/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2018 Confluent Inc.
~
~ Licensed under the Confluent Community License (the "License"); you may not use
~ this file except in compliance with the License. You may obtain a copy of the
~ License at
~
~ http://www.confluent.io/confluent-community-license
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
~ WARRANTIES OF ANY KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations under the License.
-->

<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">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.confluent.ksql</groupId>
<artifactId>ksql-parent</artifactId>
<version>5.4.0-SNAPSHOT</version>
</parent>

<artifactId>ksql-execution</artifactId>

<dependencies>
<dependency>
<groupId>io.confluent.ksql</groupId>
<artifactId>ksql-common</artifactId>
</dependency>

<!-- Required for running tests -->

<dependency>
<groupId>io.confluent.ksql</groupId>
<artifactId>ksql-common</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>

<dependency>
<groupId>io.confluent.ksql</groupId>
<artifactId>ksql-test-util</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>

</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgs>
<arg>-Xlint:all,-serial,-rawtypes</arg>
<arg>-Werror</arg>
</compilerArgs>
</configuration>
</plugin>
</plugins>
</build>
</project>
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
<module>ksql-udf-quickstart</module>
<module>ksql-serde</module>
<module>ksql-metastore</module>
<module>ksql-execution</module>
<module>ksql-parser</module>
<module>ksql-engine</module>
<module>ksql-tools</module>
Expand Down Expand Up @@ -168,6 +169,12 @@
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.confluent.ksql</groupId>
<artifactId>ksql-execution</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.confluent.ksql</groupId>
<artifactId>ksql-parser</artifactId>
Expand Down

0 comments on commit 3251d25

Please sign in to comment.