Skip to content

Commit

Permalink
Move zstd dependency into the server
Browse files Browse the repository at this point in the history
We only had this as an enterprise dependency.
The server could use it through a transititive dependency of
kafka-client. This however was version 1.4.5-6

which has an issue on M1 Macs: luben/zstd-jni#153
  • Loading branch information
mpfz0r committed May 3, 2023
1 parent c2bde37 commit 9226a35
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions graylog-project-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,11 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.github.luben</groupId>
<artifactId>zstd-jni</artifactId>
<version>${zstd.version}</version>
</dependency>

<dependency>
<groupId>com.rabbitmq</groupId>
Expand Down
4 changes: 4 additions & 0 deletions graylog2-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -588,6 +588,10 @@
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
</dependency>
<dependency>
<groupId>com.github.luben</groupId>
<artifactId>zstd-jni</artifactId>
</dependency>

<dependency>
<groupId>com.github.zafarkhaja</groupId>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@
<validation-api.version>2.0.1.Final</validation-api.version>
<zkclient.version>0.11</zkclient.version>
<zookeeper.version>3.5.7</zookeeper.version>
<zstd.version>1.5.4-1</zstd.version>
<cron-utils.version>9.1.6</cron-utils.version>
<asciitable.version>0.3.2</asciitable.version>
<commons-net.version>3.6</commons-net.version>
Expand Down

0 comments on commit 9226a35

Please sign in to comment.