-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
38 lines (27 loc) · 990 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.4.0.RELEASE'
}
}
group 'com.epam.cc.java.ftp.prototype'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'spring-boot'
repositories {
mavenCentral()
}
dependencies {
compile 'org.springframework.boot:spring-boot-starter'
compile 'org.springframework.boot:spring-boot-starter-logging'
compile 'org.springframework.boot:spring-boot-starter-redis'
compile 'org.springframework.integration:spring-integration-java-dsl:1.1.3.RELEASE'
compile 'org.springframework.integration:spring-integration-ftp:4.3.4.RELEASE'
compile 'org.springframework.integration:spring-integration-redis:4.3.4.RELEASE'
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.2'
testCompile 'junit:junit:4.11'
testCompile 'org.mockito:mockito-core:1.+'
testCompile 'org.hamcrest:hamcrest-all:1.3'
}