maven仓库中排除某个库
maven {
isAllowInsecureProtocol=true
setUrl("http://127.0.0.1:5500/")
content {
// excludeGroup("com.xxx") //从仓库排除某个组织的库
// includeGroupByRegex( "com\.unwanted\..*")//从仓库引用某个组织的库
}
}