-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
101 lines (77 loc) · 2.54 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
plugins {
id 'war'
id 'org.gretty' version '2.3.1'
}
repositories {
jcenter()
}
sourceCompatibility = 11
def springVersion = '5.2.0.RELEASE'
def aspectjweaverVersion = '1.9.4'
def javaxAnnotationVersion = '1.3.2'
def hibernateValidatorVersion = '6.0.13.Final'
def log4jVersion = '2.12.1'
def hibernateVersion = '5.4.7.Final'
def hsqlVersion = '2.5.0'
dependencies {
compile 'com.fasterxml.jackson.core:jackson-databind:2.9.4'
compile group: 'org.springframework',
name: 'spring-context',
version: springVersion
compile group: 'org.springframework',
name: 'spring-webmvc',
version: springVersion
compile group: 'org.springframework',
name: 'spring-orm',
version: springVersion
compile group: 'org.hibernate',
name: 'hibernate-validator',
version: hibernateValidatorVersion
compile group: 'org.hibernate',
name: 'hibernate-core',
version: hibernateVersion
compile group: 'org.springframework',
name: 'spring-jdbc',
version: springVersion
compile group: 'org.springframework',
name: 'spring-aop',
version: springVersion
compile group: 'javax.validation',
name: 'validation-api',
version: '2.0.1.Final'
compile group: 'javax.annotation',
name: 'javax.annotation-api',
version: javaxAnnotationVersion
compile group: 'org.aspectj',
name: 'aspectjweaver',
version: aspectjweaverVersion
compile group: 'org.postgresql',
name: 'postgresql',
version: '42.2.7'
compile group: 'org.hsqldb',
name: 'hsqldb',
version: hsqlVersion
// compile group: 'org.apache.commons',
// name: 'commons-dbcp2',
// version: '2.7.0'
compile group: 'com.fasterxml.jackson.datatype',
name: 'jackson-datatype-jsr310',
version: '2.10.0'
compile group: 'org.apache.logging.log4j',
name: 'log4j-api',
version: '2.11.1'
compile group: 'org.apache.logging.log4j',
name: 'log4j-core',
version: log4jVersion
compileOnly group: 'org.projectlombok',
name: 'lombok',
version: '1.18.10'
//compileOnly 'javax.servlet:javax.servlet-api:4.0.1'
annotationProcessor group: 'org.projectlombok',
name: 'lombok',
version: '1.18.10'
}
gretty {
contextPath = '/'
servletContainer = 'jetty9.4'
}