|
63 | 63 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
64 | 64 | <github.global.server>github</github.global.server>
|
65 | 65 | <site.installationModule>google-cloud-asset-parent</site.installationModule>
|
66 |
| - <google.core.version>1.91.2</google.core.version> |
| 66 | + <google.core.version>1.92.0</google.core.version> |
67 | 67 | <google.api-common.version>1.8.1</google.api-common.version>
|
68 | 68 | <google.common-protos.version>1.17.0</google.common-protos.version>
|
69 | 69 | <google.iam.version>0.13.0</google.iam.version>
|
70 | 70 | <gax.version>1.52.0</gax.version>
|
71 | 71 | <grpc.version>1.26.0</grpc.version>
|
72 | 72 | <protobuf.version>3.11.1</protobuf.version>
|
73 | 73 | <junit.version>4.12</junit.version>
|
74 |
| - <guava.version>28.1-android</guava.version> |
| 74 | + <guava.version>28.2-android</guava.version> |
75 | 75 | <threeten.version>1.4.0</threeten.version>
|
76 | 76 | <javax.annotations.version>1.3.2</javax.annotations.version>
|
77 | 77 | <animal-sniffer.version>1.18</animal-sniffer.version>
|
|
199 | 199 | <ignoredUnusedDeclaredDependencies>org.objenesis:objenesis</ignoredUnusedDeclaredDependencies>
|
200 | 200 | </configuration>
|
201 | 201 | </plugin>
|
| 202 | + <plugin> |
| 203 | + <groupId>org.apache.maven.plugins</groupId> |
| 204 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 205 | + <version>3.0.0-M3</version> |
| 206 | + <executions> |
| 207 | + <execution> |
| 208 | + <id>enforce</id> |
| 209 | + <goals> |
| 210 | + <goal>enforce</goal> |
| 211 | + </goals> |
| 212 | + <configuration> |
| 213 | + <rules> |
| 214 | + <requireMavenVersion> |
| 215 | + <version>[3.0,)</version> |
| 216 | + </requireMavenVersion> |
| 217 | + <requireJavaVersion> |
| 218 | + <version>[1.7,)</version> |
| 219 | + </requireJavaVersion> |
| 220 | + <dependencyConvergence/> |
| 221 | + <requireUpperBoundDeps/> |
| 222 | + </rules> |
| 223 | + </configuration> |
| 224 | + </execution> |
| 225 | + </executions> |
| 226 | + </plugin> |
202 | 227 | </plugins>
|
203 | 228 | </pluginManagement>
|
204 | 229 | </build>
|
|
0 commit comments