Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 390 Bytes

File metadata and controls

17 lines (15 loc) · 390 Bytes

Configure private repository

For example using user skeleton:

cat <<EOF > /etc/skel/.gradle/init.gradle
allprojects {
    repositories {
        maven {
            url "${MAVEN_REPO_URL}"
            credentials {
                username "${username}"
                password "${password}"
            }
        }
    }
}
EOF