-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
45 lines (37 loc) · 1021 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
42
43
44
45
plugins {
id "org.springframework.boot" version "2.7.14" apply false
id "idea"
}
idea {
module {
downloadJavadoc = false
downloadSources = false
}
}
allprojects {
apply plugin: "java"
apply plugin: "java-library"
apply plugin: "io.spring.dependency-management"
group "com.ooooo"
version "1.0.0"
repositories {
maven { url "https://maven.aliyun.com/repository/public" }
mavenCentral()
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
options.compilerArgs << "-Xlint:-unchecked" << "-Xlint:-deprecation" << "-Xlint:-varargs"
}
test {
useJUnitPlatform()
}
ext {
set("springBootVersion", "2.7.14")
}
dependencies {
compileOnly("org.projectlombok:lombok:1.18.22")
annotationProcessor("org.projectlombok:lombok:1.18.22")
testCompileOnly("org.projectlombok:lombok:1.18.22")
testAnnotationProcessor("org.projectlombok:lombok:1.18.22")
}
}