Skip to content

Commit

Permalink
Merge pull request #753 from apache/reproducible-build-qurkus
Browse files Browse the repository at this point in the history
Exclude native dep used by Quarkus
  • Loading branch information
bdemers authored Feb 19, 2025
2 parents 3f43b1e + 43999d9 commit 4c3e887
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions scim-server-examples/scim-server-quarkus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,15 @@
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy</artifactId>
<exclusions>
<exclusion>
<!-- brings in unused native dependency
It's not used in this example, and it causes issues
with Reproducible Builds and the maven-remote-resources-plugin -->
<groupId>com.aayushatharva.brotli4j</groupId>
<artifactId>brotli4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
Expand Down

0 comments on commit 4c3e887

Please sign in to comment.