forked from JakeWharton/hugo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (39 loc) · 912 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'org.gradle.api.plugins:gradle-nexus-plugin:0.7'
classpath 'com.android.tools.build:gradle:2.1.0'
classpath 'org.aspectj:aspectjtools:1.8.6'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
}
}
allprojects {
repositories {
mavenCentral()
}
group = GROUP
version = VERSION_NAME
apply plugin: 'maven'
}
ext {
compileSdkVersion = 23
buildToolsVersion = '23.0.1'
}
task cleanExample(type: Exec) {
executable = '../gradlew'
workingDir = project.file('hugo-example')
args = [ 'clean' ]
}
task assembleExample(type: Exec) {
executable = '../gradlew'
workingDir = project.file('hugo-example')
args = [ 'assemble' ]
}
task installExample(type: Exec) {
executable = '../gradlew'
workingDir = project.file('hugo-example')
args = [ 'installDebug' ]
}