forked from mkyong/spring4-mvc-gradle-xml-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
43 lines (33 loc) · 819 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
32
33
34
35
36
37
38
39
40
41
buildscript {
repositories {
mavenCentral()
}
}
plugins {
id 'war'
id 'java'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
}
compileJava {
options.encoding = "UTF-8"
options.incremental = true
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation platform('org.springframework:spring-framework-bom:4.3.3.RELEASE')
implementation ('org.springframework:spring-webmvc')
implementation('org.springframework:spring-aop')
implementation('org.springframework:spring-aspects')
implementation('org.springframework:spring-instrument')
implementation 'ch.qos.logback:logback-classic:1.1.3'
implementation 'javax.servlet:jstl:1.2'
}