-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
48 lines (37 loc) · 1.67 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
plugins {
id 'java'
id 'application'
id 'war'
}
group 'com.epam.springseptember'
mainClassName = 'com.epam.spring.Main'
jar {
manifest {
attributes('Main-Class':'com.epam.spring.Main')
}
}
war {
archivesBaseName = "spring"
}
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'org.springframework', name: 'spring-context', version: '5.2.0.RELEASE'
compile group: 'org.springframework', name: 'spring-webmvc', version: '5.2.0.RELEASE'
compile group: 'org.springframework', name: 'spring-aop', 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.springframework.data', name: 'spring-data-jpa', version: '2.1.10.RELEASE'
compile group: 'org.springframework.data', name: 'spring-data-rest-webmvc', version: '3.2.0.RELEASE'
compile group: 'org.aspectj', name: 'aspectjweaver', version: '1.9.4'
providedCompile group: 'javax.servlet', name: 'javax.servlet-api', version: '3.1.0'
compile group: 'org.thymeleaf', name: 'thymeleaf-spring5', version: '3.0.11.RELEASE'
compile group: 'javax.validation', name: 'validation-api', version: '2.0.1.Final'
compile group: 'org.hibernate', name: 'hibernate-core', version: '5.4.5.Final'
compile group: 'org.projectlombok', name: 'lombok', version: '1.18.8'
annotationProcessor 'org.projectlombok:lombok:1.18.8'
compile group: 'com.h2database', name: 'h2', version: '1.4.199'
}