Could not get https:////dl.bintray.com/lukaville/maven/com/nbsp/library/1.09

报错:

Could not get https:dl.bintray.com/lukaville/maven/com/nbsp/library/1.09

问题:

	是之前的仓库关闭了
    maven { url 'https://dl.bintray.com/umsdk/release' }

详情:【链接: 详情.】

解决办法:

   //maven { url 'https://dl.bintray.com/umsdk/release' }
	// 替换为这个仓库就好了
    maven { url 'https://repo.cuba-platform.com/'}
allprojects {
    repositories {
     
        maven { url 'https://maven.aliyun.com/repository/google' }
        mavenCentral()
        jcenter()

		//这个是之前的
        //maven { url 'https://dl.bintray.com/umsdk/release' }
   		// 替换为这个仓库就好了
        maven { url 'https://repo.cuba-platform.com/'}
    }
}

猜你喜欢

转载自blog.csdn.net/ZQ200720/article/details/121659333
今日推荐