-
Notifications
You must be signed in to change notification settings - Fork 376
Expand file tree
/
Copy pathbuild.gradle
More file actions
53 lines (43 loc) · 1.3 KB
/
build.gradle
File metadata and controls
53 lines (43 loc) · 1.3 KB
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
51
52
53
plugins {
id 'java'
id 'idea'
}
group 'com.techcourse'
version '1.0-SNAPSHOT'
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
repositories {
mavenCentral()
}
dependencies {
implementation project(':mvc')
implementation project(':jdbc')
implementation 'org.springframework:spring-tx:6.2.10'
implementation 'org.springframework:spring-jdbc:6.2.10'
implementation 'org.apache.tomcat.embed:tomcat-embed-core:11.0.10'
implementation 'org.apache.tomcat.embed:tomcat-embed-jasper:11.0.10'
implementation 'ch.qos.logback:logback-classic:1.5.18'
implementation 'org.apache.commons:commons-lang3:3.18.0'
implementation 'com.h2database:h2:2.3.232'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'org.mockito:mockito-core:5.15.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.13.4'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.13.4'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
test {
useJUnitPlatform()
}
idea {
module {
inheritOutputDirs = false
outputDir file('src/main/webapp/WEB-INF/classes')
}
}
sourceSets {
main {
java.destinationDirectory.set(file('src/main/webapp/WEB-INF/classes'))
}
}