-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
32 lines (21 loc) · 1.08 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
group 'com.tutorial.spring'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
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-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'
}