|
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <artifactId>google-cloud-bigtable</artifactId> |
5 | | - <version>2.62.0</version><!-- {x-version-update:google-cloud-bigtable:current} --> |
| 5 | + <version>2.62.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-bigtable:current} --> |
6 | 6 | <packaging>jar</packaging> |
7 | 7 | <name>Google Cloud Bigtable</name> |
8 | 8 | <url>https://github.com/googleapis/java-bigtable</url> |
|
12 | 12 | <parent> |
13 | 13 | <groupId>com.google.cloud</groupId> |
14 | 14 | <artifactId>google-cloud-bigtable-parent</artifactId> |
15 | | - <version>2.62.0</version><!-- {x-version-update:google-cloud-bigtable:current} --> |
| 15 | + <version>2.62.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-bigtable:current} --> |
16 | 16 | </parent> |
17 | 17 | <properties> |
18 | 18 | <!-- The version that will be embedded in the published jar via maven-resources-plugin --> |
19 | | - <java-bigtable.version>2.62.0</java-bigtable.version><!-- {x-version-update:google-cloud-bigtable:current} --> |
| 19 | + <java-bigtable.version>2.62.1-SNAPSHOT</java-bigtable.version><!-- {x-version-update:google-cloud-bigtable:current} --> |
20 | 20 |
|
21 | 21 | <site.installationModule>google-cloud-bigtable</site.installationModule> |
22 | 22 |
|
|
54 | 54 | <dependency> |
55 | 55 | <groupId>com.google.cloud</groupId> |
56 | 56 | <artifactId>google-cloud-bigtable-deps-bom</artifactId> |
57 | | - <version>2.62.0</version><!-- {x-version-update:google-cloud-bigtable:current} --> |
| 57 | + <version>2.62.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-bigtable:current} --> |
58 | 58 | <type>pom</type> |
59 | 59 | <scope>import</scope> |
60 | 60 | </dependency> |
61 | 61 | <dependency> |
62 | 62 | <groupId>com.google.cloud</groupId> |
63 | 63 | <artifactId>google-cloud-bigtable-bom</artifactId> |
64 | | - <version>2.62.0</version><!-- {x-version-update:google-cloud-bigtable:current} --> |
| 64 | + <version>2.62.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-bigtable:current} --> |
65 | 65 | <type>pom</type> |
66 | 66 | <scope>import</scope> |
67 | 67 | </dependency> |
|
400 | 400 | </plugins> |
401 | 401 | </build> |
402 | 402 | </profile> |
| 403 | + <profile> |
| 404 | + <id>error-prone</id> |
| 405 | + <activation> |
| 406 | + <!-- errorprone requires >= jdk17 --> |
| 407 | + <jdk>[17,)</jdk> |
| 408 | + </activation> |
| 409 | + <build> |
| 410 | + <pluginManagement> |
| 411 | + <plugins> |
| 412 | + <plugin> |
| 413 | + <groupId>org.apache.maven.plugins</groupId> |
| 414 | + <artifactId>maven-compiler-plugin</artifactId> |
| 415 | + <configuration> |
| 416 | + <fork>true</fork> |
| 417 | + |
| 418 | + <compilerArgs> |
| 419 | + <arg>-XDcompilePolicy=simple</arg> |
| 420 | + <arg>--should-stop=ifError=FLOW</arg> |
| 421 | + <arg>-Xplugin:ErrorProne -XepExcludedPaths:.*/generated-sources/.*</arg> |
| 422 | + |
| 423 | + <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED</arg> |
| 424 | + <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED</arg> |
| 425 | + <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED</arg> |
| 426 | + <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED</arg> |
| 427 | + <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED</arg> |
| 428 | + <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED</arg> |
| 429 | + <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED</arg> |
| 430 | + <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED</arg> |
| 431 | + <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED</arg> |
| 432 | + <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED</arg> |
| 433 | + </compilerArgs> |
| 434 | + <annotationProcessorPaths combine.children="append"> |
| 435 | + <path> |
| 436 | + <groupId>com.google.errorprone</groupId> |
| 437 | + <artifactId>error_prone_core</artifactId> |
| 438 | + <version>${error-prone.version}</version> |
| 439 | + </path> |
| 440 | + </annotationProcessorPaths> |
| 441 | + </configuration> |
| 442 | + </plugin> |
| 443 | + </plugins> |
| 444 | + </pluginManagement> |
| 445 | + </build> |
| 446 | + </profile> |
403 | 447 | <profile> |
404 | 448 | <id>enable-verbose-grpc-logs</id> |
405 | 449 | <properties> |
|
0 commit comments