-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
41 lines (33 loc) · 1019 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
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'idea'
apply plugin: "io.franzbecker.gradle-lombok"
group = 'com.ringcentral.platform'
version = '1.0.0-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
maven { url "http://repo.maven.apache.org/maven2" }
}
lombok {
version = "1.16.8"
sha256 = "fe32b29b7b33eb2b19866cbc5345c59c9984a6036cc396856a04c0d09f99ea68"
}
dependencies {
compile group: 'io.reactivex', name: 'rxjava', version: '1.1.10'
compile group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.1'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.21'
testCompile(group: 'org.spockframework', name: 'spock-core', version: '1.0-groovy-2.4')
}
buildscript {
repositories {
mavenLocal()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.franzbecker:gradle-lombok:1.6"
classpath "net.researchgate:gradle-release:2.4.0"
}
}