-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
44 lines (38 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
33
34
35
36
37
38
39
40
41
42
43
44
buildscript {
repositories {
jcenter()
maven { url "https://plugins.gradle.org/m2" }
}
dependencies {
classpath "com.gradle:build-scan-plugin:$buildScanPluginVersion"
classpath "com.gradle.publish:plugin-publish-plugin:$pluginPublishPluginVersion"
}
}
apply plugin: 'com.gradle.build-scan'
apply plugin: 'groovy'
apply plugin: 'java-gradle-plugin'
apply from: "$rootDir/gradle/functional-test.gradle"
apply from: "$rootDir/gradle/release.gradle"
group = 'com.felipefzdz.gradle.heroku'
version = '1.0.7'
buildScan {
publishAlways()
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
termsOfServiceAgree = 'yes'
}
repositories {
jcenter()
}
dependencies {
compile localGroovy()
compile "com.google.guava:guava:$guavaVersion"
compile "com.heroku.api:heroku-api:$herokuVersion"
compile "com.heroku.api:heroku-http-apache:$herokuVersion"
compile "com.heroku.api:heroku-json-jackson:$herokuVersion"
testCompile("org.spockframework:spock-core:$spockVersion-groovy-2.4") {
exclude group: 'org.codehaus.groovy'
}
testCompile ('com.felipefdzdz.spock:spock-wiremock-extension:0.1.12') {
exclude group: 'org.codehaus.groovy'
}
}