Skip to content

Commit

Permalink
deps: temporarily update boringssl ahead of netty to fix M1 docker cr…
Browse files Browse the repository at this point in the history
…ash (#3650)

temporary until netty includes netty/netty#13724

Fixes #3532

Signed-off-by: Adrian Cole <adrian@tetrate.io>
  • Loading branch information
codefromthecrypt authored Dec 15, 2023
1 parent 9244952 commit a78c162
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions zipkin-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,11 @@
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</exclusion>
<!-- temporary until netty includes https://github.com/netty/netty/pull/13724 -->
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-boringssl-static</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -159,6 +164,43 @@
<version>${armeria.version}</version>
</dependency>

<!-- temporary until netty includes https://github.com/netty/netty/pull/13724 -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-boringssl-static</artifactId>
<version>2.0.62.Final</version>
<classifier>linux-x86_64</classifier>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-boringssl-static</artifactId>
<version>2.0.62.Final</version>
<classifier>linux-aarch_64</classifier>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-boringssl-static</artifactId>
<version>2.0.62.Final</version>
<classifier>osx-x86_64</classifier>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-boringssl-static</artifactId>
<version>2.0.62.Final</version>
<classifier>osx-aarch_64</classifier>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-boringssl-static</artifactId>
<version>2.0.62.Final</version>
<classifier>windows-x86_64</classifier>
<scope>runtime</scope>
</dependency>

<!--Prometheus metrics-->
<dependency>
<groupId>io.micrometer</groupId>
Expand Down

0 comments on commit a78c162

Please sign in to comment.