It\'s slow to visit the maven official repositories from my country, so I want to try some local repositories first.
Is it able to add them to some global gradle configu
I would suggest to use the init.gradle script which is located in your home folder $HOME/.gradle/init.gradle which might contain the following content:
$HOME/.gradle/init.gradle
allprojects { repositories { mavenLocal() maven { url "http://localhost:8081/nexus/content/groups/public/" } } }