-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
55 lines (45 loc) · 1.09 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 {
repositories {
jcenter()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:4.0.0'
classpath 'net.nemerosa:versioning:1.7.1'
}
}
group GROUP
version VERSION
subprojects { subproj ->
group GROUP
version VERSION
buildscript {
repositories {
mavenCentral()
jcenter()
maven {
url 'https://maven.google.com'
}
}
}
repositories {
mavenCentral()
jcenter()
maven {
url 'https://maven.google.com'
}
}
apply from: rootProject.file('gradle/dependencies.gradle')
subproj.tasks.withType(JavaCompile) {
sourceCompatibility = 1.7
targetCompatibility = 1.7
}
subproj.tasks.withType(GroovyCompile) {
sourceCompatibility = 1.7
targetCompatibility = 1.7
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.13'
}