Commit decb8db
Include in Dependency Report the path to the build file declaring the dependencies being reported on (#189)
* Include in Dependency Report the path to the build file declaring the dependencies being reported on
* OpenRewrite recipe best practices
Use this link to re-run the recipe: https://app.moderne.io/recipes/org.openrewrite.recipes.rewrite.OpenRewriteRecipeBestPractices?organizationId=QUxML01vZGVybmUvTW9kZXJuZSArIE9wZW5SZXdyaXRl
Co-authored-by: Moderne <team@moderne.io>
* Pin empty MavenSettings in DependencyResolutionDiagnosticTest.maven() (#178)
openrewrite/gh-automation#95 installs ~/.m2/settings.xml with `<mirrorOf>*</mirrorOf>` to route Maven through `artifactory.moderne.ninja` and avoid HTTP 429 from Maven Central. The mirror rewrites every repository request — including the test pom's deliberately-unreachable `<repository><url>https://nonexistent.moderne.io/maven2</url></repository>` — so the diagnostic recipe only sees the mirror and the local file cache. Neither Maven Central nor the test repo appear in the data table, and both assertions fail.
Inject an explicit empty `MavenSettings` via `MavenExecutionContextView` (same pattern as `mavenSettingsWithMirrors`) so the recipe ignores `~/.m2/settings.xml` and sees the pom-declared repositories directly. The original three assertions are restored unchanged.
* Speed up ModuleHasDependency and RepositoryHasDependency by removing DependencyInsight (#176)
* Speed up ModuleHasDependency and RepositoryHasDependency by removing DependencyInsight
Both recipes ran a fresh DependencyInsight visitor against every source file during
scanning, which performs exhaustive Gradle + Maven dependency analysis just to answer
a binary yes/no question about whether the module contains a given GAV.
Replace the visitor with a direct check against MavenResolutionResult.findDependencies
for Maven modules, and against GradleProject's configurations + ResolvedDependency.findDependency
for Gradle modules. This mirrors the pattern Sam applied to the single-build-system versions
of ModuleHasDependency in openrewrite/rewrite (commit 919c9f5 / PR #6664).
These recipes are used as preconditions in many declarative migration recipes.
Avoiding the DependencyInsight allocation + traversal per source file substantially
reduces scanner time on repositories with many Java files.
* Skip dependency scan in ModuleHasDependency once project is known to match
Avoids re-running the per-tree dependency lookup for every source file in a
module after the JavaProject has already been added to the accumulator.
---------
Co-authored-by: Tim te Beek <tim@moderne.io>
* Match requested dependencies in ModuleHasDependency and RepositoryHasDependency (#179)
* Regenerate recipes.csv (#180)
* Update Gradle wrapper 9.5.1
Use this link to re-run the recipe: https://app.moderne.io/recipes/org.openrewrite.gradle.UpdateGradleWrapper?organizationId=QUxML01vZGVybmUgKyBPcGVuUmV3cml0ZS9PcGVuUmV3cml0ZQ%3D%3D#defaults=W3sidmFsdWUiOiI5LjUuMSIsIm5hbWUiOiJ2ZXJzaW9uIn0seyJ2YWx1ZSI6ImJpbiIsIm5hbWUiOiJkaXN0cmlidXRpb24ifSx7InZhbHVlIjoiYmFmYzE0MWI2MTlhZDYzNTBmZDk3NWZjOTAzMTU2ZGQ1YzE1MTk5OGNjOGIwNThlOGMxMDQ0YWI1ZjdiMDMxZiIsIm5hbWUiOiJkaXN0cmlidXRpb25DaGVja3N1bSJ9XQ==
Co-authored-by: Moderne <team@moderne.io>
* Trust resolved version over declared dep in dependency search (#181)
* Trust resolved version over declared dep in dependency search
PR #179 extended ModuleHasDependency / RepositoryHasDependency to also
match against requested/declared dependencies so they still match when
resolution fails. This introduced false positives whenever a version
range is supplied: the declared version string could satisfy the
comparator even when the resolved version did not (e.g. a Gradle
resolutionStrategy.force or platform alignment overriding the declared
coordinate).
- When a coordinate is present in the resolved dependencies, trust the
resolved check and skip the declared-dependency fallback for that
group:artifact. Only fall back for declared deps not already resolved.
- Tighten versionMatches so a null declared version no longer
auto-matches when a version constraint is supplied (same treatment as
a ${...} property reference).
Adds regression tests covering both rules in ModuleHasDependencyTest and
RepositoryHasDependencyTest.
* Apply suggestions from code review
Co-authored-by: Jente Sondervorst <jentesondervorst@gmail.com>
* Add Maven regression tests for BOM-managed dependency version range
---------
Co-authored-by: Jente Sondervorst <jentesondervorst@gmail.com>
* git-ignore .context/
Use this link to re-run the recipe: https://app.moderne.io/recipes/org.openrewrite.AddToGitignore?organizationId=QUxML01vZGVybmUgKyBPcGVuUmV3cml0ZQ%3D%3D#defaults=W3sidmFsdWUiOiIuY29udGV4dC8iLCJuYW1lIjoiZW50cmllcyJ9XQ==
Co-authored-by: Moderne <team@moderne.io>
* Fix RemoveDependency.unlessUsing for multi-module Maven projects (#183)
* Fix `RemoveDependency.unlessUsing` for multi-module Maven projects
`RemoveDependency` scans every source file and records whether `unlessUsing`
matched against the file's `JavaProject` marker. In a multi-module Maven
project the parent pom carries its own `JavaProject` distinct from the
children, so the parent module's accumulator entry never reflects type
usages found in child modules. The visitor would then strip the
`<dependency>` from the parent pom even though child modules in the same
reactor still relied on inheriting it.
Now the scanner additionally records the `MavenResolutionResult.id ->
JavaProject` mapping for every pom it visits. When the visitor is about to
remove a `<dependency>` from a pom, it walks that pom's descendant modules
via `MavenResolutionResult.getModules()` and preserves the declaration if
any descendant's `JavaProject` shows the type in use.
* Allow `RemoveDependency` to remove ancestor decl when descendants self-declare
The descendant-aware preservation introduced in the previous commit was
intentionally conservative: any descendant module whose Java sources used
the `unlessUsing` type blocked removal of the dep from an ancestor pom.
That over-preserves when a descendant module also declares the same
dependency directly in its own `<dependencies>` — in that case the
descendant is self-sufficient and the ancestor's declaration is dead
weight.
Refine the check: a descendant only blocks removal if it uses the type AND
does not declare the dependency itself. The self-declaration check looks
at the raw `requested` pom (as-written), not the resolved/inherited
dependency list, so a child that inherits the dep from the ancestor we
might modify still correctly blocks removal.
* Remove out-of-date OWASP suppressions
Use this link to re-run the recipe: https://app.moderne.io/recipes/org.openrewrite.xml.security.RemoveOwaspSuppressions?organizationId=QUxML01vZGVybmUgKyBPcGVuUmV3cml0ZQ%3D%3D#defaults=W3sidmFsdWUiOiIyMDI2LTA2LTE3IiwibmFtZSI6ImN1dE9mZkRhdGUifV0=
Co-authored-by: Moderne <team@moderne.io>
* Use GitHub actions/checkout@v7
Use this link to re-run the recipe: https://app.moderne.io/recipes/org.openrewrite.github.ChangeActionVersion?organizationId=QUxML01vZGVybmUgKyBPcGVuUmV3cml0ZQ%3D%3D#defaults=W3sidmFsdWUiOiJhY3Rpb25zL2NoZWNrb3V0IiwibmFtZSI6ImFjdGlvbiJ9LHsidmFsdWUiOiJ2NyIsIm5hbWUiOiJ2ZXJzaW9uIn1d
Co-authored-by: Moderne <team@moderne.io>
* Cache delegate recipes per recipe instance to avoid repeated construction (#184)
The Gradle/Maven dependency wrapper recipes (`AddDependency`, `ChangeDependency`, `UpgradeDependencyVersion`, `UpgradeTransitiveDependencyVersion`) each delegate to a Gradle and a Maven `ScanningRecipe`. Previously a fresh delegate instance was constructed on every `getInitialValue`/`getScanner`/`getVisitor`/`validate` call (and, in `AddDependency`, once per source file inside the scanner's `visit`).
Each `ScanningRecipe` construction runs `UUID.randomUUID()` for its accumulator-message key, which draws from `SecureRandom` and dominated profiles of recipe-heavy runs.
Memoize each delegate lazily on the wrapper recipe instance (a `final transient AtomicReference` that is excluded from the generated constructor and from `equals`/`hashCode`) so it is built at most once per wrapper instance and reused across the scanning and editing phases. The delegate is derived from the wrapper's options, so it belongs to the recipe instance rather than the accumulator: callers such as `rewrite-spring` deliberately reuse a single accumulator across two wrapper instances that have different options, so caching the delegate on the accumulator would reuse the wrong options.
The `Accumulator` types are left unchanged, preserving their public constructors for downstream callers that build them directly.
* Add software.amazon.ion:ion-java -> com.amazon.ion:ion-java relocation (stopgap) (#185)
* [Auto] Old GroupId migrations as of 2026-06-23T1723
* Update findRelocatedIonJava test for new relocation context (#186)
The [Auto] Old GroupId migrations update (5253cf5) added a context note
to the software.amazon.ion:ion-java relocation in migrations.csv. The
RelocatedDependencyCheck recipe now surfaces that context both in the
RelocatedDependencyReport data table row and in the inline search-result
marker comment, so update the test expectations to match.
Fixes the scheduled CI failure in run 28122079598.
* Keep direct dependencies whose scope or exclusions differ from the transitive one (#188)
* Keep direct dependencies whose scope or exclusions differ from the transitive one
RemoveRedundantDependencies removed a direct dependency whenever a matched
parent provided the same coordinate transitively, ignoring scope and
exclusions. This silently changed the effective classpath when the direct
declaration carried information the transitive entry did not.
A direct dependency is now only removed when the transitive one provides it
at the exact same effective scope and with the same exclusions:
- Track each transitive dependency's effective exclusions and only treat a
direct dependency as redundant when its exclusions match exactly.
- Key Maven transitives by the parent dependency's own effective scope and
compare against the direct dependency's effective scope, rather than
treating a broader transitive scope as covering a narrower direct one.
Fixes the five scenarios from openrewrite/rewrite#8235.
* Simplify test POMs: drop XML declaration and project attributes
* Extract handleGradle/handleMaven and trim comments
* Rename getCompatibleTransitives to getCompatibleGradleTransitives
* Polish
---------
Co-authored-by: Tim te Beek <timtebeek@gmail.com>
Co-authored-by: Moderne <team@moderne.io>
Co-authored-by: Tim te Beek <tim@moderne.io>
Co-authored-by: Steve Elliott <steve@moderne.io>
Co-authored-by: Jente Sondervorst <jentesondervorst@gmail.com>
Co-authored-by: Greg Oledzki <greg.oledzki@moderne.io>
Co-authored-by: Knut Wannheden <knut@moderne.io>1 parent 0371a6c commit decb8db
4 files changed
Lines changed: 36 additions & 42 deletions
File tree
- src
- main/java/org/openrewrite/java/dependencies
- table
- test/java/org/openrewrite/java/dependencies
Lines changed: 10 additions & 7 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| 39 | + | |
39 | 40 | | |
40 | 41 | | |
41 | 42 | | |
| |||
89 | 90 | | |
90 | 91 | | |
91 | 92 | | |
| 93 | + | |
92 | 94 | | |
93 | 95 | | |
94 | 96 | | |
| |||
100 | 102 | | |
101 | 103 | | |
102 | 104 | | |
103 | | - | |
| 105 | + | |
104 | 106 | | |
105 | 107 | | |
106 | 108 | | |
| |||
109 | 111 | | |
110 | 112 | | |
111 | 113 | | |
112 | | - | |
| 114 | + | |
113 | 115 | | |
114 | 116 | | |
115 | 117 | | |
| |||
121 | 123 | | |
122 | 124 | | |
123 | 125 | | |
124 | | - | |
| 126 | + | |
125 | 127 | | |
126 | 128 | | |
127 | 129 | | |
128 | 130 | | |
129 | 131 | | |
130 | 132 | | |
131 | | - | |
132 | 133 | | |
133 | 134 | | |
134 | 135 | | |
| |||
140 | 141 | | |
141 | 142 | | |
142 | 143 | | |
| 144 | + | |
143 | 145 | | |
144 | 146 | | |
145 | 147 | | |
| |||
151 | 153 | | |
152 | 154 | | |
153 | 155 | | |
154 | | - | |
| 156 | + | |
155 | 157 | | |
156 | 158 | | |
157 | 159 | | |
158 | 160 | | |
159 | | - | |
| 161 | + | |
160 | 162 | | |
161 | 163 | | |
162 | 164 | | |
| |||
180 | 182 | | |
181 | 183 | | |
182 | 184 | | |
| 185 | + | |
183 | 186 | | |
184 | 187 | | |
185 | 188 | | |
| |||
191 | 194 | | |
192 | 195 | | |
193 | 196 | | |
194 | | - | |
| 197 | + | |
195 | 198 | | |
196 | 199 | | |
197 | 200 | | |
| |||
Lines changed: 4 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
39 | 43 | | |
40 | 44 | | |
41 | 45 | | |
| |||
Lines changed: 4 additions & 6 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
93 | 93 | | |
94 | 94 | | |
95 | 95 | | |
96 | | - | |
97 | | - | |
98 | | - | |
99 | | - | |
100 | | - | |
101 | | - | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
102 | 100 | | |
103 | 101 | | |
104 | 102 | | |
| |||
Lines changed: 18 additions & 29 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
91 | 91 | | |
92 | 92 | | |
93 | 93 | | |
94 | | - | |
| 94 | + | |
95 | 95 | | |
96 | 96 | | |
97 | 97 | | |
| |||
107 | 107 | | |
108 | 108 | | |
109 | 109 | | |
110 | | - | |
111 | | - | |
112 | | - | |
113 | | - | |
114 | | - | |
115 | | - | |
116 | | - | |
117 | | - | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
118 | 116 | | |
119 | 117 | | |
120 | 118 | | |
| |||
126 | 124 | | |
127 | 125 | | |
128 | 126 | | |
129 | | - | |
| 127 | + | |
130 | 128 | | |
131 | 129 | | |
132 | 130 | | |
| |||
158 | 156 | | |
159 | 157 | | |
160 | 158 | | |
161 | | - | |
162 | | - | |
163 | | - | |
164 | | - | |
165 | | - | |
166 | | - | |
167 | | - | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
| 163 | + | |
168 | 164 | | |
169 | 165 | | |
170 | 166 | | |
| |||
189 | 185 | | |
190 | 186 | | |
191 | 187 | | |
192 | | - | |
193 | | - | |
194 | | - | |
195 | | - | |
196 | | - | |
197 | | - | |
198 | | - | |
199 | | - | |
200 | | - | |
| 188 | + | |
| 189 | + | |
| 190 | + | |
201 | 191 | | |
202 | 192 | | |
203 | 193 | | |
204 | 194 | | |
205 | 195 | | |
206 | 196 | | |
207 | 197 | | |
208 | | - | |
209 | | - | |
| 198 | + | |
210 | 199 | | |
211 | 200 | | |
212 | 201 | | |
| |||
215 | 204 | | |
216 | 205 | | |
217 | 206 | | |
218 | | - | |
| 207 | + | |
219 | 208 | | |
220 | 209 | | |
221 | 210 | | |
| |||
0 commit comments