-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
38 lines (30 loc) · 941 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
plugins {
id 'com.jfrog.bintray' version '1.8.4'
id 'com.jfrog.artifactory' version '4.14.1'
id 'com.github.kt3k.coveralls' version '2.6.3'
}
apply from: 'gradle/config.gradle'
apply from: 'gradle/git.gradle'
allprojects {
apply plugin: 'groovy'
version = System.env.APP_VERSION ?: version
repositories {
mavenLocal()
jcenter()
}
dependencies {
implementation 'org.codehaus.groovy:groovy:3.0.2'
testImplementation 'org.hamcrest:hamcrest-all:1.3'
testImplementation 'org.spockframework:spock-core:2.0-M2-groovy-3.0'
}
}
subprojects {
apply from: "${rootProject.projectDir.path}/gradle/maven.gradle"
apply from: "${rootProject.projectDir.path}/gradle/bintray.gradle"
apply from: "${rootProject.projectDir.path}/gradle/artifactory.gradle"
apply from: "${rootProject.projectDir.path}/gradle/quality.gradle"
}
artifactoryPublish.skip = true
wrapper {
gradleVersion = gradleWrapperVersion
}