-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
37 lines (28 loc) · 943 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
apply plugin: 'war'
apply plugin: 'java'
group 'mvcvue'
version ''
webAppDirName = "src/main/webapp"
war {
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework:spring-web:5.3.22'
implementation 'javax.servlet:javax.servlet-api:4.0.1'
implementation 'org.springframework:spring-webmvc:5.3.8'
implementation 'org.springframework:spring-context:5.3.22'
implementation 'org.springframework:spring-aop:3.2.3.RELEASE'
implementation 'org.aspectj:aspectjrt:1.6.10'
implementation 'org.aspectj:aspectjweaver:1.9.19'
// implementation 'org.springframework:spring-core:5.3.22'
// implementation 'org.springframework:spring-context:5.3.22'
implementation 'log4j:log4j:1.2.17'
testImplementation 'org.springframework:spring-test:5.3.8'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
test {
useJUnitPlatform()
}