Skip to content
This repository has been archived by the owner on Sep 19, 2023. It is now read-only.

Commit

Permalink
ci: excluding jackson from upper-bound-check
Browse files Browse the repository at this point in the history
Excluding Jackson from the upper-bound-check because it's not part
of the artifacts we provide to customers.
  • Loading branch information
suztomo committed Oct 13, 2021
1 parent 30b4c26 commit ce27948
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions upper-bound-check/pom.xml
Expand Up @@ -259,4 +259,31 @@
<artifactId>grpc-google-iam-v1</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireUpperBoundDeps>
<excludes>
<!-- Jackson is not part of the artifacts we provide to customers -->
<exclude>com.fasterxml.jackson.core:jackson-core</exclude>
</excludes>
</requireUpperBoundDeps>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit ce27948

Please sign in to comment.