-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
28 lines (24 loc) · 863 Bytes
/
build.gradle
File metadata and controls
28 lines (24 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
buildscript {
repositories {
maven {
url "http://dl.bintray.com/pledbrook/plugins"
}
}
dependencies {
classpath "uk.co.cacoethes:lazybones-gradle:1.2.3"
}
}
apply plugin: "uk.co.cacoethes.lazybones-templates"
lazybones {
repositoryName = "gextech/oss"
// It's best to pull this information from a gradle.properties file in the
// root directory. For example, gradle.properties could contain:
//
// bintrayUsername=dilbert
// bintrayApiKey=kdshfiu2htr082hg0h2ghkhsdafkh
//
// You could then set the following properties to `project.bintrayUsername`
// and `project.bintrayApiKey` respectively.
repositoryUsername = project.hasProperty('bintrayUsername') ? bintrayUsername : ''
repositoryApiKey = project.hasProperty('bintrayApiKey') ? bintrayApiKey : ''
}