-
Notifications
You must be signed in to change notification settings - Fork 373
feat: Add Apache Ivy package manager support #11014
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
feat: Add Apache Ivy package manager support #11014
Conversation
alexandruz
commented
Oct 24, 2025
- New Ivy plugin with direct parsing and transitive resolution modes
- Requires Ivy CLI only for transitive resolution
- Added Apache Ivy in Docker images
- Enhanced Gradle plugin to handle Ivy dependencies
- Includes functional tests and example configuration
plugins/package-managers/gradle/src/main/kotlin/GradleDependencyHandler.kt
Fixed
Show fixed
Hide fixed
plugins/package-managers/gradle/src/main/kotlin/GradleDependencyHandler.kt
Fixed
Show fixed
Hide fixed
plugins/package-managers/gradle/src/main/kotlin/GradleDependencyHandler.kt
Fixed
Show fixed
Hide fixed
plugins/package-managers/gradle/src/main/kotlin/GradleDependencyHandler.kt
Fixed
Show fixed
Hide fixed
77478d1 to
9b861c5
Compare
9b861c5 to
cccbea3
Compare
cccbea3 to
4d6b5e8
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #11014 +/- ##
=========================================
Coverage 57.77% 57.78%
Complexity 1714 1714
=========================================
Files 346 346
Lines 12901 12902 +1
Branches 1235 1235
=========================================
+ Hits 7454 7455 +1
Misses 5001 5001
Partials 446 446
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
6800d13 to
f2a1676
Compare
e944a6f to
0f6746a
Compare
dc72559 to
6b30b5e
Compare
- New Ivy plugin with direct parsing (default) and transitive resolution (opt-in) modes - Requires Ivy CLI only for transitive resolution - Pre-installed Apache Ivy 2.5.2 in Docker images - Enhanced Gradle plugin to handle Ivy dependencies - Includes functional tests and example configuration Signed-off-by: Alexandru Zănogeanu <alexandru.zanogeanu@fossid.com>
6b30b5e to
e5bd190
Compare
| // Handle both Maven POM files (.pom) and Ivy descriptor files (ivy-*.xml) | ||
| val artifactBaseUrl = when { | ||
| pomUrl == null -> return RemoteArtifact.EMPTY | ||
| pomUrl.endsWith(".pom") -> pomUrl.removeSuffix(".pom") |
Check failure
Code scanning / detekt
Consistently add or remove blank lines between when-conditions in a when-statement Error
| val artifactBaseUrl = when { | ||
| pomUrl == null -> return RemoteArtifact.EMPTY | ||
| pomUrl.endsWith(".pom") -> pomUrl.removeSuffix(".pom") | ||
| pomUrl.contains("/ivy-") && pomUrl.endsWith(".xml") -> { |
Check failure
Code scanning / detekt
Consistently add or remove blank lines between when-conditions in a when-statement Error