We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4ed072 commit bf86c93Copy full SHA for bf86c93
scripts/generate-lockfile.py
@@ -90,7 +90,8 @@ def find_coursier_artifacts(cache_dir: Path) -> list[Path]:
90
continue
91
92
for path in https_dir.rglob("*"):
93
- if path.is_file() and path.suffix in (".jar", ".pom"):
+ # Include Maven artifacts (.jar, .pom) and Ivy artifacts (.xml for ivy.xml)
94
+ if path.is_file() and path.suffix in (".jar", ".pom", ".xml"):
95
artifacts.append(path)
96
97
return sorted(artifacts)
0 commit comments