jean
08/19/2021, 8:29 AMrepositories {
google()
mavenCentral()
maven {
url = uri("<https://maven.pkg.jetbrains.space/org1/p/dep1/maven>")
name = "name1"
credentials(PasswordCredentials::class)
}
maven {
url = uri("<https://maven.pkg.jetbrains.space/org2/p/dep2/maven>")
name = "name2"
credentials(PasswordCredentials::class)
}
}
Gradle can resolve one at a time, but if I add both and build, it fails on the second one. Am I missing something here?Vampire
08/19/2021, 9:59 AMjean
08/19/2021, 11:05 AM