forked from 6thsolution/EasyMVP
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
55 lines (44 loc) · 1.35 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
buildscript {
apply from: rootProject.file('buildsystem/dependencies.gradle')
repositories {
jcenter()
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath deps.androidPlugin
classpath deps.gradleBintrayPlugin
classpath deps.buildInfoExtractorGradle
classpath deps.versioning
classpath deps.weaverPlugin
classpath deps.androidApt
classpath deps.hugo
}
}
group GROUP
version VERSION_NAME
subprojects { subproj ->
group GROUP
version VERSION_NAME
buildscript {
apply from: rootProject.file('buildsystem/dependencies.gradle')
}
apply from: rootProject.file('buildsystem/dependencies.gradle')
repositories {
jcenter()
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url "https://oss.jfrog.org/oss-snapshot-local/" }
}
subproj.tasks.withType(JavaCompile) {
sourceCompatibility = 1.7
targetCompatibility = 1.7
}
subproj.tasks.withType(GroovyCompile) {
sourceCompatibility = 1.7
targetCompatibility = 1.7
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}