-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
54 lines (45 loc) · 1.42 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
buildscript {
ext {
springBootVersion = '1.5.2.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
project.version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
jar {
baseName = 'sprayer-bot'
}
repositories {
mavenLocal()
mavenCentral()
maven { url "http://dl.bintray.com/ethereum/maven" }
maven { url "https://oss.sonatype.org/content/groups/staging" }
}
dependencies {
compile('org.springframework.boot:spring-boot-starter')
runtime('org.springframework.boot:spring-boot-devtools')
compile('org.springframework.boot:spring-boot-starter-web')
compile('io.springfox:springfox-swagger2:2.6.1')
compile('io.springfox:springfox-swagger-ui:2.6.1')
compile('org.projectlombok:lombok')
compile('ee.euro2:wallet-server-client:0.0.2-SNAPSHOT')
compile('in.ashwanthkumar:slack-java-webhook:0.0.7')
compile('org.ethereum:ethereumj-core:1.3.1-RELEASE') {
exclude group: "org.slf4j", module: "slf4j-log4j12"
}
testCompile("org.springframework.boot:spring-boot-starter-test") {
exclude module: "spock-core"
}
testCompile("org.spockframework:spock-core:1.1-groovy-2.4-rc-3")
testCompile("org.spockframework:spock-spring:1.1-groovy-2.4-rc-3")
testCompile('cglib:cglib-nodep:3.2.4') // for stubbing of classes
}