-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (33 loc) · 916 Bytes
/
build.gradle
File metadata and controls
37 lines (33 loc) · 916 Bytes
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
// Gradle 빌드되기 전에 실행되는 설정
buildscript {
// ext {
// springBootVersion = '3.1.0'
// }
repositories {
mavenCentral()
}
dependencies {
// classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
// classpath "io.spring.gradle:dependency-management-plugin:1.0.11.RELEASE"
}
}
//plugins {
// id 'java'
//}
// 현재의 root 프로젝트와 앞으로 추가될 서브 마이크로서비스에 대한 설정
allprojects {}
// 전체 서브 모듈에 해당되는 설정
subprojects {
// apply plugin: 'java'
// apply plugin: 'org.springframework.boot'
// apply plugin: 'io.spring.dependency-management'
// sourceCompatibility = '17'
// configurations {
// compileOnly {
// extendsFrom annotationProcessor
// }
// }
// repositories {
// mavenCentral()
// }
}