-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
31 lines (27 loc) · 928 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
group 'spring-instateams'
version '1.0-SNAPSHOT'
buildscript{
repositories{
mavenCentral()
}
dependencies{
classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.3.3.RELEASE'
}
}
apply plugin: 'java'
apply plugin: 'spring-boot'
repositories {
mavenCentral()
}
dependencies {
compile 'org.springframework.boot:spring-boot-starter-web:1.5.8.RELEASE'
compile 'io.github.jpenren:thymeleaf-spring-data-dialect:3.1.1'
compile 'org.thymeleaf:thymeleaf-spring4:3.0.8.RELEASE'
compile 'org.thymeleaf:thymeleaf:3.0.8.RELEASE'
compile 'org.thymeleaf.extras:thymeleaf-extras-java8time:3.0.1.RELEASE'
compile 'org.springframework:spring-orm:4.3.12.RELEASE'
compile 'org.hibernate:hibernate-core:5.2.0.Final'
compile 'org.apache.tomcat:tomcat-dbcp:8.0.32'
compile 'com.h2database:h2:1.4.191'
testCompile group: 'junit', name: 'junit', version: '4.11'
}