-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (32 loc) · 1.91 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
group 'com.spring.inaction'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'war'
sourceCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
//minimum requirements for IoC and Dependency Injection
compile group: 'org.springframework', name: 'spring-core', version: '5.1.4.RELEASE'
compile group: 'org.springframework', name: 'spring-context', version: '5.1.4.RELEASE'
compile group: 'org.springframework', name: 'spring-beans', version: '5.1.4.RELEASE'
compile group: 'org.springframework', name: 'spring-webmvc', version: '5.1.4.RELEASE'
compile group: 'org.thymeleaf', name: 'thymeleaf-spring5', version: '3.0.11.RELEASE'
compile group: 'nz.net.ultraq.thymeleaf', name: 'thymeleaf-layout-dialect', version: '2.3.0'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.8'
compileOnly group: 'javax.servlet', name: 'javax.servlet-api', version: '3.1.0'
testCompileOnly group: 'javax.servlet', name: 'javax.servlet-api', version: '3.1.0'
compile group: 'org.springframework', name: 'spring-tx', version: '5.1.4.RELEASE'
compile group: 'org.springframework', name: 'spring-orm', version: '5.1.4.RELEASE'
compile group: 'org.hibernate', name: 'hibernate-core', version: '5.4.1.Final'
compile group: 'postgresql', name: 'postgresql', version: '9.1-901-1.jdbc4'
compile group: 'joda-time', name: 'joda-time', version: '2.10.1'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
testCompile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.mockito', name: 'mockito-all', version: '1.10.19'
testCompile group: 'org.springframework', name: 'spring-test', version: '5.1.4.RELEASE'
//testCompile group: 'org.springframework', name: 'spring-test-mvc', version: '1.0.0.m2'
}