-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
35 lines (27 loc) · 936 Bytes
/
build.gradle
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
29
30
31
32
33
buildscript {
repositories {
maven {
url "http://dl.bintray.com/pledbrook/plugins"
}
}
dependencies {
classpath "uk.co.cacoethes:lazybones-gradle:1.2.3"
}
}
apply from: "gradle/wrapper.gradle"
apply plugin: "uk.co.cacoethes.lazybones-templates"
lazybones {
licenses = ['Apache-2.0']
template "vertx3" includes "groovy-project", "groovy-verticle", "add-vertx-util"
repositoryName = "bangroot/lazybones-templates"
// 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 = bintray_user
repositoryApiKey = bintray_key
}