Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions flink-libraries/flink-cep/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ under the License.
chill ArraysAsListSerializer
-->--add-opens=java.base/java.util=ALL-UNNAMED
</surefire.module.config>
<antlr4.version>4.13.1</antlr4.version>
</properties>

<dependencies>
Expand All @@ -63,6 +64,13 @@ under the License.
<artifactId>flink-shaded-guava</artifactId>
</dependency>

<!-- ANTLR4 for DSL support -->
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
<version>${antlr4.version}</version>
</dependency>

<!-- test dependencies -->

<dependency>
Expand Down Expand Up @@ -124,6 +132,27 @@ under the License.
</execution>
</executions>
</plugin>

<!-- ANTLR4 code generation for DSL -->
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<version>${antlr4.version}</version>
<configuration>
<outputDirectory>
${project.build.directory}/generated-sources/antlr4
</outputDirectory>
<visitor>true</visitor>
<listener>true</listener>
</configuration>
<executions>
<execution>
<goals>
<goal>antlr4</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down
Loading