You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(maven-workspace): update all discovered pom.xml within the components (#1667)
* feat(maven-workspace): can update any discovered pom.xml within the repository
* fix: load new plugin option from manifest
* docs: add comments for new helper methods
* fix: fetch pom.xml content
* fix: snapshot versioning bumps
* build: restore c8 test coverage
* fix merge conflict and tests
* docs: add a description of what FAKE_COMMIT is used for
* fix: default considerAllArtifacts to true
* docs: update docs for new default value
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
45
45
`
46
46
47
+
exports['MavenWorkspace plugin run can consider all artifacts 1']=`
48
+
:robot: I have created a release *beep* *boop*
49
+
---
50
+
51
+
52
+
<details><summary>multi1: 1.1.2</summary>
53
+
54
+
Release notes for path: multi1, releaseType: java-yoshi
* The following workspace dependencies were updated
62
+
* com.google.example:multi1-bom bumped to 1.1.2,
63
+
* com.google.example:multi1-sub1 bumped to 2.2.3,
64
+
* com.google.example:multi1-sub2 bumped to 3.3.4
65
+
</details>
66
+
67
+
---
68
+
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
69
+
`
70
+
71
+
exports['MavenWorkspace plugin run can consider all artifacts 2']=`
72
+
<?xml version="1.0" encoding="UTF-8"?>
73
+
<project>
74
+
<groupId>com.google.example</groupId>
75
+
<artifactId>my-bom</artifactId>
76
+
<version>1.2.4</version>
77
+
<dependencyManagement>
78
+
<dependencies>
79
+
<dependency>
80
+
<groupId>com.google.example</groupId>
81
+
<artifactId>multi1-bom</artifactId>
82
+
<version>1.1.2</version>
83
+
<type>pom</type>
84
+
<scope>import</scope>
85
+
</dependency>
86
+
<dependency>
87
+
<groupId>com.google.example</groupId>
88
+
<artifactId>multi1-sub1</artifactId>
89
+
<version>2.2.3</version>
90
+
</dependency>
91
+
<dependency>
92
+
<groupId>com.google.example</groupId>
93
+
<artifactId>multi1-sub2</artifactId>
94
+
<version>3.3.4</version>
95
+
</dependency>
96
+
<dependency>
97
+
<groupId>com.google.example</groupId>
98
+
<artifactId>multi2-sub1</artifactId>
99
+
<version>5.5.5</version>
100
+
</dependency>
101
+
<dependency>
102
+
<groupId>com.google.example</groupId>
103
+
<artifactId>multi2-sub2</artifactId>
104
+
<version>6.6.6</version>
105
+
</dependency>
106
+
</dependencies>
107
+
</dependencyManagement>
108
+
</project>
109
+
`
110
+
47
111
exports['MavenWorkspace plugin run handles a single maven package 1']=`
Copy file name to clipboardExpand all lines: schemas/config.json
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -292,6 +292,10 @@
292
292
"merge": {
293
293
"description": "Whether to merge in-scope pull requests into a combined release pull request. Defaults to `true`.",
294
294
"type": "boolean"
295
+
},
296
+
"considerAllArtifacts": {
297
+
"description": "Whether to analyze all packages in the workspace for cross-component version bumping. This currently only works for the maven-workspace plugin. Defaults to `true`.",
0 commit comments