-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
50 lines (39 loc) · 1.81 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.1.8.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'application'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group 'health'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven {url "http://repo.spring.io/libs-snapshot"}
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-tomcat")
compile("org.springframework.boot:spring-boot-devtools")
compile group: 'org.springframework', name: 'spring-jdbc', version: '5.1.9.RELEASE'
compile group: 'org.springframework', name: 'spring-orm', version: '5.1.9.RELEASE'
compile group: 'org.springframework.security', name: 'spring-security-core', version: '5.2.0.RELEASE'
compile group: 'org.springframework.security', name: 'spring-security-web', version: '5.2.0.RELEASE'
compile group: 'org.springframework.security', name: 'spring-security-config', version: '5.2.0.RELEASE'
compile group: 'org.postgresql', name: 'postgresql', version: '42.2.8'
compile group: 'org.hibernate', name: 'hibernate-core', version: '5.4.1.Final'
compile group: 'org.hibernate', name: 'hibernate-entitymanager', version: '5.4.1.Final'
compile group: 'org.aspectj', name: 'aspectjrt', version: '1.9.2'
compile group: 'org.aspectj', name: 'aspectjweaver', version: '1.9.2'
compile group: 'org.apache.tomcat.embed', name: 'tomcat-embed-jasper', version: '9.0.16'
compile group: 'javax.servlet.jsp.jstl', name: 'jstl', version: '1.2'
testCompile group: 'junit', name: 'junit', version: '4.12'
}