Mobile.maven.couchbase.com seems to not be resolving or taking a very long time to

Put simply, running Android Studio and trying to gradle sync the dependencies is taking a very long time. Builds are running close to an hour when usually it takes under a minute, and this is happening to the other engineers on my team as well. Gradle just sits on something along the lines of “Gradle: Metadata of http://mobile.maven.couchbase.com/maven2/dev/com/android/tools/…” for a very long time to pull in the dependencies.

Not sure if this is the best place for this, but can you guys check on your maven repo?

For context, this is happening off of compile ‘com.couchbase.lite:couchbase-lite-android:2.0.0-DB020’

Root gradle file:

buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0’
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.6.2’
classpath ‘com.google.gms:google-services:3.1.0’

   // NOTE: Do not place your application dependencies here; they belong
   // in the individual module build.gradle files

}
}

allprojects {
repositories {
jcenter()
maven {
url “http://mobile.maven.couchbase.com/maven2/dev/
}
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

I don’t know what to check, but downloading the package directly didn’t seem slow or anything.