Ahmed Hamouda
12/02/2024, 11:58 AMrepositories {
// This repo is needed because some of the dependencies has incorrect metadata
maven {
url = uri("<https://xxxxxx>")
metadataSources {
artifact() // Look directly for artifact instead of metadata file
}
content {
includeGroupByRegex("com.my.example.*")
}
}
}
And I want to download dependencies of any dependency with group: <http://com.my|com.my>.example.*
. The reason I am using artifact metadata source is because the metadata file of these dependencies has incorrect versionVampire
12/02/2024, 12:54 PMAhmed Hamouda
12/02/2024, 12:55 PM