Skip to content

Commit

Permalink
build(cel): force override protobuf transitive dep used by CEL (#262)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores authored Nov 24, 2023
1 parent 50eab4f commit 2490484
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
<io.smallrye.config.version>2.12.3</io.smallrye.config.version>
<org.slf4j.version>2.0.7</org.slf4j.version>
<org.projectnessie.cel.bom.version>0.4.3</org.projectnessie.cel.bom.version>
<com.google.protobuf-java.version>3.22.3</com.google.protobuf-java.version>
<com.redhat.insights.agent.version>0.9.0</com.redhat.insights.agent.version>

<com.github.spotbugs.version>4.8.1</com.github.spotbugs.version>
Expand All @@ -84,6 +85,12 @@
<version>${org.projectnessie.cel.bom.version}</version>
<type>pom</type>
<scope>import</scope>
<exclusions>
<exclusion>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down Expand Up @@ -131,6 +138,12 @@
<groupId>org.projectnessie.cel</groupId>
<artifactId>cel-tools</artifactId>
</dependency>
<!-- FIXME this is a forced version override of the protobuf required by projectnessie -->
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>${com.google.protobuf-java.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
Expand Down

0 comments on commit 2490484

Please sign in to comment.