File tree Expand file tree Collapse file tree 10 files changed +119
-5
lines changed
Expand file tree Collapse file tree 10 files changed +119
-5
lines changed Original file line number Diff line number Diff line change 1+ handleGHRelease : true
2+ manifest : true
3+ releaseType : java-yoshi
4+ branches :
5+ - bumpMinorPreMajor : true
6+ handleGHRelease : true
7+ releaseType : java-lts
8+ branch : 9.0.x-lts
9+ - bumpMinorPreMajor : true
10+ handleGHRelease : true
11+ releaseType : java-lts
12+ branch : 8.0.x-lts
13+
Original file line number Diff line number Diff line change 1+
2+ {
3+ "." : " 1.5.15" ,
4+ "boms/cloud-lts-bom" : " 9.0.1"
5+ }
Original file line number Diff line number Diff line change 77
88 <groupId >com.google.cloud</groupId >
99 <artifactId >gcp-lts-bom</artifactId >
10- <version >10 .0.0 -SNAPSHOT</version >
10+ <version >9 .0.2 -SNAPSHOT</version > <!-- {x-version-update:gcp-lts-bom:current} -- >
1111 <packaging >pom</packaging >
1212
1313 <name >Google Cloud Long Term Support BOM</name >
546546 </dependencies >
547547 </dependencyManagement >
548548
549+ <profiles >
550+ <profile >
551+ <id >release</id >
552+ <activation >
553+ <property >
554+ <name >performRelease</name >
555+ </property >
556+ </activation >
557+ <build >
558+ <plugins >
559+ <plugin >
560+ <groupId >org.apache.maven.plugins</groupId >
561+ <artifactId >maven-gpg-plugin</artifactId >
562+ <version >3.2.7</version >
563+ <executions >
564+ <execution >
565+ <id >sign-artifacts</id >
566+ <phase >verify</phase >
567+ <goals >
568+ <goal >sign</goal >
569+ </goals >
570+ <configuration >
571+ <gpgArguments >
572+ <arg >--pinentry-mode</arg >
573+ <arg >loopback</arg >
574+ </gpgArguments >
575+ </configuration >
576+ </execution >
577+ </executions >
578+ </plugin >
579+ <plugin >
580+ <groupId >org.apache.maven.plugins</groupId >
581+ <artifactId >maven-source-plugin</artifactId >
582+ <version >3.3.1</version >
583+ <executions >
584+ <execution >
585+ <id >attach-sources</id >
586+ <goals >
587+ <goal >jar-no-fork</goal >
588+ </goals >
589+ </execution >
590+ </executions >
591+ </plugin >
592+ </plugins >
593+ </build >
594+ </profile >
595+ </profiles >
549596</project >
Original file line number Diff line number Diff line change 1+ # Format:
2+ # module:released-version:current-version
3+
4+ gcp-lts-bom:9.0.1:9.0.2-SNAPSHOT
Original file line number Diff line number Diff line change 88 <parent >
99 <groupId >com.google.cloud.tools</groupId >
1010 <artifactId >dependencies-parent</artifactId >
11- <version >1.5.16-SNAPSHOT</version >
11+ <version >1.5.16-SNAPSHOT</version ><!-- {x-version-update:dependencies:current} -->
1212 </parent >
1313
1414 <artifactId >dependencies</artifactId >
Original file line number Diff line number Diff line change 66 <parent >
77 <groupId >com.google.cloud.tools</groupId >
88 <artifactId >dependencies-parent</artifactId >
9- <version >1.5.16-SNAPSHOT</version >
9+ <version >1.5.16-SNAPSHOT</version ><!-- {x-version-update:dependencies:current} -->
1010 </parent >
1111
1212 <artifactId >linkage-checker-enforcer-rules</artifactId >
Original file line number Diff line number Diff line change 2222 <parent >
2323 <groupId >com.google.cloud.tools</groupId >
2424 <artifactId >dependencies-parent</artifactId >
25- <version >1.5.16-SNAPSHOT</version >
25+ <version >1.5.16-SNAPSHOT</version ><!-- {x-version-update:dependencies:current} -->
2626 </parent >
2727
2828 <artifactId >linkage-monitor</artifactId >
Original file line number Diff line number Diff line change 77 <groupId >com.google.cloud.tools</groupId >
88 <artifactId >dependencies-parent</artifactId >
99 <packaging >pom</packaging >
10- <version >1.5.16-SNAPSHOT</version >
10+ <version >1.5.16-SNAPSHOT</version ><!-- {x-version-update:dependencies:current} -->
1111
1212 <name >Cloud Tools Open Source Code Hygiene Tooling</name >
1313 <url >https://github.com/GoogleCloudPlatform/cloud-opensource-java/</url >
249249 </profile >
250250 <profile >
251251 <id >release</id >
252+ <activation >
253+ <property >
254+ <name >performRelease</name >
255+ </property >
256+ </activation >
252257 <build >
253258 <plugins >
254259 <plugin >
277282 </execution >
278283 </executions >
279284 </plugin >
285+ <plugin >
286+ <groupId >org.apache.maven.plugins</groupId >
287+ <artifactId >maven-gpg-plugin</artifactId >
288+ <version >3.2.7</version >
289+ <executions >
290+ <execution >
291+ <id >sign-artifacts</id >
292+ <phase >verify</phase >
293+ <goals >
294+ <goal >sign</goal >
295+ </goals >
296+ <configuration >
297+ <gpgArguments >
298+ <arg >--pinentry-mode</arg >
299+ <arg >loopback</arg >
300+ </gpgArguments >
301+ </configuration >
302+ </execution >
303+ </executions >
304+ </plugin >
280305 </plugins >
281306 </build >
282307 </profile >
Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : " https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" ,
3+ "separate-pull-requests" : true ,
4+ "include-component-in-tag" : true ,
5+ "packages" : {
6+ "." : {
7+ "component" : " dependencies" ,
8+ "release-type" : " java-yoshi"
9+ },
10+ "boms/cloud-lts-bom" : {
11+ "component" : " gcp-lts-bom" ,
12+ "release-type" : " java-yoshi"
13+ }
14+ },
15+ "bootstrap-sha" : " 8eb8233f0f402a52f9452ccc633fbce63904163d"
16+ }
Original file line number Diff line number Diff line change 1+ # Format:
2+ # module:released-version:current-version
3+
4+ dependencies:1.5.15:1.5.16-SNAPSHOT
You can’t perform that action at this time.
0 commit comments