Skip to content

Commit

Permalink
deps(engine): add used undeclared dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
npepinpe committed Jan 3, 2024
1 parent 7942fe6 commit 97a0195
Showing 1 changed file with 24 additions and 4 deletions.
28 changes: 24 additions & 4 deletions engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,21 @@
<artifactId>zeebe-db</artifactId>
</dependency>

<dependency>
<groupId>io.camunda</groupId>
<artifactId>zeebe-scheduler</artifactId>
</dependency>

<dependency>
<groupId>io.camunda</groupId>
<artifactId>zeebe-stream-platform</artifactId>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>

<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-common-protos</artifactId>
Expand Down Expand Up @@ -116,6 +131,11 @@
<artifactId>grpc-stub</artifactId>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>

<!-- Test Scope -->
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down Expand Up @@ -186,10 +206,10 @@
<goal>analyze-duplicate</goal>
</goals>
<configuration>
<!-- TODO remove this after version of
plugin is released which includes
https://github.com/apache/maven-dependency-plugin/pull/194 -->
<failOnWarning>false</failOnWarning>
<ignoredUnusedDeclaredDependencies>
<!-- runtime binding for tests -->
<dependency>org.slf4j:slf4j-simple</dependency>
</ignoredUnusedDeclaredDependencies>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit 97a0195

Please sign in to comment.