-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
37 lines (30 loc) · 895 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
plugins {
id 'org.springframework.boot' version '2.3.2.RELEASE'
id("io.spring.dependency-management") version "1.0.11.RELEASE"
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
allprojects {
repositories {
mavenCentral()
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'org.springframework.boot'
group 'org.example'
sourceCompatibility = JavaVersion.VERSION_11
dependencies {
compileOnly('org.springframework.boot:spring-boot-starter-web')
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testCompileOnly group: 'junit', name: 'junit'
testCompileOnly('org.springframework.boot:spring-boot-starter-test')
runtimeOnly('mysql:mysql-connector-java')
}
clean {
delete 'out'
}
}