Skip to content

Commit

Permalink
Merge pull request #190 from camunda-cloud/filters-module
Browse files Browse the repository at this point in the history
Create a filters module
  • Loading branch information
remcowesterhoud authored Feb 16, 2022
2 parents d92a48b + 6226444 commit 2327e86
Show file tree
Hide file tree
Showing 13 changed files with 47 additions and 0 deletions.
5 changes: 5 additions & 0 deletions assertions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@
<version>1.3.4-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>io.camunda</groupId>
<artifactId>zeebe-process-test-filters</artifactId>
</dependency>

<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
Expand Down
35 changes: 35 additions & 0 deletions filters/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<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.camunda</groupId>
<artifactId>zeebe-process-test-root</artifactId>
<version>1.3.4-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>zeebe-process-test-filters</artifactId>
<version>1.3.4-SNAPSHOT</version>

<name>Zeebe Process Test Filters</name>

<properties>
<version.java>8</version.java>
</properties>

<dependencies>
<dependency>
<groupId>io.camunda</groupId>
<artifactId>zeebe-process-test-api</artifactId>
</dependency>

<dependency>
<groupId>io.camunda</groupId>
<artifactId>zeebe-protocol</artifactId>
</dependency>
</dependencies>

</project>
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<module>engine</module>
<module>engine-agent</module>
<module>extension</module>
<module>filters</module>
<module>qa</module>
</modules>

Expand Down Expand Up @@ -95,6 +96,12 @@
<version>1.3.4-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>io.camunda</groupId>
<artifactId>zeebe-process-test-filters</artifactId>
<version>1.3.4-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
Expand Down

0 comments on commit 2327e86

Please sign in to comment.