Skip to content

Commit

Permalink
Fix client dependencies (#116)
Browse files Browse the repository at this point in the history
* Add explicit dependency on `jackson-databind` in `kafka-oauth-common`

Signed-off-by: Marko Strukelj <[email protected]>

* Exclude `json-path` transitive dependency from `kafka-oauth-client`

Signed-off-by: Marko Strukelj <[email protected]>
  • Loading branch information
mstruk authored and scholzj committed Jun 10, 2021
1 parent 02824ea commit b2dab70
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 6 additions & 0 deletions oauth-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@
<dependency>
<groupId>io.strimzi</groupId>
<artifactId>kafka-oauth-common</artifactId>
<exclusions>
<exclusion>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
1 change: 0 additions & 1 deletion oauth-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
Expand Down

0 comments on commit b2dab70

Please sign in to comment.