Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Initial implementation
  • Loading branch information
akrambek committed Oct 15, 2024
commit 57984caca15c6ff8fe6b37ffb98a6c9246410382
10 changes: 10 additions & 0 deletions incubator/binding-pgsql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>engine</artifactId>
Expand Down Expand Up @@ -107,6 +112,10 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
Expand Down Expand Up @@ -191,6 +200,7 @@
<configuration>
<excludes>
<exclude>io/aklivity/zilla/runtime/binding/pgsql/internal/types/**/*.class</exclude>
<exclude>io/aklivity/zilla/runtime/binding/pgsql/parser/**/*.class</exclude>
</excludes>
<rules>
<rule>
Expand Down
Loading