We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f03b0c8 commit 8370cfeCopy full SHA for 8370cfe
pom.xml
@@ -168,6 +168,29 @@
168
<showDeprecation>true</showDeprecation>
169
</configuration>
170
</plugin>
171
+ <plugin>
172
+ <groupId>org.apache.maven.plugins</groupId>
173
+ <artifactId>maven-enforcer-plugin</artifactId>
174
+ <version>3.0.0-M3</version>
175
+ <executions>
176
+ <execution>
177
+ <id>enforce</id>
178
+ <configuration>
179
+ <rules>
180
+ <requireUpperBoundDeps>
181
+ <excludes>
182
+ <exclude>io.grpc:grpc-api</exclude>
183
+ <exclude>io.grpc:grpc-core</exclude>
184
+ </excludes>
185
+ </requireUpperBoundDeps>
186
+ </rules>
187
+ </configuration>
188
+ <goals>
189
+ <goal>enforce</goal>
190
+ </goals>
191
+ </execution>
192
+ </executions>
193
+ </plugin>
194
</plugins>
195
</build>
196
0 commit comments