-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (31 loc) · 836 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
plugins {
id 'idea'
id 'java-library'
}
group 'tech.article'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains:annotations:22.0.0"
implementation "org.apache.commons:commons-lang3:3.12.0"
implementation 'org.springframework:spring-context:5.3.13'
implementation 'org.springframework:spring-web:5.3.13'
testImplementation(platform('org.junit:junit-bom:5.8.1'))
testImplementation('org.junit.jupiter:junit-jupiter:5.8.1') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
tasks.withType(JavaCompile) {
//enable compilation in a separate daemon process
options.fork = true
sourceCompatibility = 17
targetCompatibility = 17
}
test {
useJUnitPlatform()
}
wrapper {
gradleVersion = '7.3'
}