```repositories { maven { uri("<https://artifa...
# gradle
x
Copy code
repositories {
    maven { uri("<https://artifacts.mysite.com>") }
e
should be
Copy code
repositories {
    maven { url = uri("...") }
}
there’s also a shorter notation:
Copy code
repositories {
    maven(url = "...")
}
x
thanks, I knew that at one point and then apparently lost my docs on it...