Skip to content

Commit

Permalink
silence enforcer for grpc downgrade
Browse files Browse the repository at this point in the history
Change-Id: Ia6e11c9655ccf07bc94849f6a52a473442ba3ad9
  • Loading branch information
igorbernstein2 committed Oct 2, 2024
1 parent b9c0af8 commit 33bf883
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,23 @@
</dependencyManagement>

<build>
<pluginManagement>
<plugins>
<!-- TODO: remove this next release -->
<!-- Temporarily disable requireUpperBoundDeps
rule to downgrade bad grpc release:
https://github.com/grpc/grpc-java/releases/tag/v1.68.0-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<configuration>
<rulesToSkip>requireUpperBoundDeps</rulesToSkip>
<failIfNoRules>false</failIfNoRules>
</configuration>
</plugin>
</plugins>
</pluginManagement>

<plugins>
<!-- Using maven site plugin only as a hook for javadoc:aggregate, don't need the reports -->
<plugin>
Expand Down

0 comments on commit 33bf883

Please sign in to comment.