-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
32 lines (21 loc) · 1.22 KB
/
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
/** DO NOT CHANGE THIS FILE BY HAND
( ) ) ) ) )
)\ ) ( /( ( /( ( /( * ) ( ( /( ( ( /( (
(()/( )\()) )\()))\())` ) /( )\ )\()) )\ )\()))\ ) (
/(_))((_)\ ((_)\((_)\ ( )(_)) (((_)((_)((((_)( ((_)\(()/( )\
(_))_ ((_) _((_) ((_)(_(_()) )\___ _((_)\ _ )\ _((_)/(_))_((_)
| \ / _ \ | \| |/ _ \|_ _| ((/ __| || (_)_\(_) \| (_)) __| __|
| |) | (_) | | .` | (_) | | | | (__| __ |/ _ \ | .` | | (_ | _|
|___/ \___/ |_|\_|\___/ |_| \___|_||_/_/ \_\|_|\_| \___|___|
# SAMPLE BUILD COMMANDS
./gradlew
./gradlew -x test
./gradlew -Dtest.single=HealthSpec
./gradlew run
./gradlew bld_stats
*/
buildscript {
ext.config = { key, defaultValue = null -> System.properties[key] ?: System.getenv()[key] ?: project.hasProperty(key) ? project.ext[key] : defaultValue }
apply from: config('buildscriptUrl') ?: "${config('mavenRepoUrl', 'https://jcenter.bintray.com/')}com/github/mrduguo/gradle/gradle-buildscript/${config('buildscriptVersion') ? "${config('buildscriptVersion')}/gradle-buildscript-${config('buildscriptVersion')}-buildscript.gradle" : 'buildscript.gradle'}"
}
apply plugin: 'com.github.mrduguo.gradle.buildscript'