Adam
06/07/2025, 5:25 PMDependencyArtifact#getUrl
, except in tests. It doesn't look like the value is ever read.
dependencies {
"fooConf"("blah:blah:1.2.3") {
artifact {
url = "<https://example.com/bar.zip>"
}
}
}
Vampire
06/07/2025, 7:15 PMclassifier
.
No idea whether the url would have an effect somewhere.Adam
06/07/2025, 7:54 PMartifacts.clear()
before artifact {}
makes it work as intended, so I guess either the Javadoc is outdated or there's a bug.
https://github.com/gradle/gradle/issues/33781Vampire
06/07/2025, 8:09 PM