Skip to content

Commit

Permalink
Update gradle.md
Browse files Browse the repository at this point in the history
  • Loading branch information
lwindolf authored Jan 11, 2024
1 parent 0ba38a8 commit 2ac6870
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions cheat-sheet/Packaging/gradle.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
## 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}"

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

0 comments on commit 2ac6870

Please sign in to comment.