-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
57 lines (48 loc) · 1.87 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
55
56
57
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.2.RELEASE")
classpath("org.springframework.security:spring-security-core:4.2.2.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
jar {
baseName = 'gs-spring-boot'
version = '0.1.0'
}
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile("org.springframework.boot:spring-boot-starter-web") {
exclude module: "spring-boot-starter-tomcat"
}
// compile("org.springframework.boot:spring-boot-starter-security")
// compile 'com.google.guava:guava:14.0'
compile("org.springframework.boot:spring-boot-starter-jetty")
compile("org.springframework.boot:spring-boot-starter-actuator")
compile('com.fasterxml.jackson.core:jackson-databind:2.8.8')
compile group: 'com.mashape.unirest', name: 'unirest-java', version: '1.4.9'
compile group: 'org.mockito', name: 'mockito-all', version: '1.10.19'
// compile('org.springframework.boot:spring-boot-starter-security')
compile project (':domain')
testCompile("junit:junit")
compile group: 'io.springfox', name: 'springfox-swagger2', version: '2.6.1'
compile group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.6.1'
compile 'org.hibernate:hibernate-gradle-plugin:5.2.9.Final'
compile 'org.springframework.boot:spring-boot-starter-data-jpa:1.5.2.RELEASE'
compile files('libs/ojdbc6-11.2.0.3.0.jar')
compile 'org.springframework:spring-context:4.3.2.RELEASE'
// compile 'javax.validation:validation-api:1.1.0.Final'
// compile 'org.hibernate:hibernate-validator:5.2.4.Final'
compile group: 'commons-fileupload', name: 'commons-fileupload', version: '1.3.2'
// compile 'com.google.guava:guava:11.0.2'
compile 'com.google.code.gson:gson:2.6.2'
}