-
Notifications
You must be signed in to change notification settings - Fork 2
JavaQuickNotes
henk52 edited this page Aug 25, 2020
·
2 revisions
See:
in ~/.gradle/gradle.properties put:
- mavenUser=
- mavenPassword=
"secure" it with: chmod 600 ~/.gradle/gradle.properties
Put the following in the build.graddle file:
repositories {
maven {
credentials {
username "$mavenUser"
password "$mavenPassword"
}
url = 'https://XXX/maven-release'
}
flatDir {
dirs 'libs/'
}
jcenter()
}
- gradle cache is in ~/.graddle/caches
Can't remember the exact wording.
Go look in: File -> settings: 'Build,execution, Deployment' -> Build Tools -> Gradle