|
1 | 1 | plugins { |
2 | | - id 'java' |
3 | | - id 'org.springframework.boot' version '3.4.5' |
4 | | - id 'io.spring.dependency-management' version '1.1.7' |
| 2 | + id 'java' |
| 3 | + id 'org.springframework.boot' version '3.4.5' |
| 4 | + id 'io.spring.dependency-management' version '1.1.7' |
5 | 5 | } |
6 | 6 |
|
7 | 7 | group = 'com.driveu' |
8 | 8 | version = '0.0.1-SNAPSHOT' |
9 | 9 |
|
10 | 10 | java { |
11 | | - toolchain { |
12 | | - languageVersion = JavaLanguageVersion.of(21) |
13 | | - } |
| 11 | + toolchain { |
| 12 | + languageVersion = JavaLanguageVersion.of(21) |
| 13 | + } |
14 | 14 | } |
15 | 15 |
|
16 | 16 | configurations { |
17 | | - compileOnly { |
18 | | - extendsFrom annotationProcessor |
19 | | - } |
| 17 | + compileOnly { |
| 18 | + extendsFrom annotationProcessor |
| 19 | + } |
20 | 20 | } |
21 | 21 |
|
22 | 22 | repositories { |
23 | | - mavenCentral() |
| 23 | + mavenCentral() |
24 | 24 | } |
25 | 25 |
|
26 | 26 | dependencies { |
27 | | - implementation 'org.springframework.boot:spring-boot-starter-data-jpa' |
28 | | - implementation 'org.springframework.boot:spring-boot-starter-oauth2-client' |
29 | | - implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server' |
30 | | - implementation 'org.springframework.boot:spring-boot-starter-security' |
31 | | - implementation 'org.springframework.boot:spring-boot-starter-web' |
| 27 | + implementation 'org.springframework.boot:spring-boot-starter-data-jpa' |
| 28 | + implementation 'org.springframework.boot:spring-boot-starter-oauth2-client' |
| 29 | + implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server' |
| 30 | + implementation 'org.springframework.boot:spring-boot-starter-security' |
| 31 | + implementation 'org.springframework.boot:spring-boot-starter-web' |
32 | 32 | implementation 'org.springframework.boot:spring-boot-starter-aop' |
33 | 33 |
|
34 | | - implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE' |
| 34 | + implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE' |
35 | 35 |
|
36 | | - implementation platform("software.amazon.awssdk:bom:2.25.17") // 최신 버전 BOM (버전은 필요 시 조정) |
37 | | - implementation "software.amazon.awssdk:s3" |
38 | | - implementation "software.amazon.awssdk:auth" |
39 | | - implementation "software.amazon.awssdk:regions" |
| 36 | + implementation platform("software.amazon.awssdk:bom:2.25.17") // 최신 버전 BOM (버전은 필요 시 조정) |
| 37 | + implementation "software.amazon.awssdk:s3" |
| 38 | + implementation "software.amazon.awssdk:auth" |
| 39 | + implementation "software.amazon.awssdk:regions" |
40 | 40 |
|
41 | | - compileOnly 'org.projectlombok:lombok' |
42 | | - runtimeOnly 'com.mysql:mysql-connector-j' |
| 41 | + compileOnly 'org.projectlombok:lombok' |
| 42 | + runtimeOnly 'com.mysql:mysql-connector-j' |
43 | 43 |
|
44 | | - implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.3.0' |
45 | | - implementation 'org.jetbrains:annotations:24.0.0' |
46 | | - implementation 'io.jsonwebtoken:jjwt-api:0.11.5' |
47 | | - implementation 'io.jsonwebtoken:jjwt-impl:0.11.5' |
48 | | - implementation 'io.jsonwebtoken:jjwt-jackson:0.11.5' |
| 44 | + implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.3.0' |
| 45 | + implementation 'org.jetbrains:annotations:24.0.0' |
| 46 | + implementation 'io.jsonwebtoken:jjwt-api:0.11.5' |
| 47 | + implementation 'io.jsonwebtoken:jjwt-impl:0.11.5' |
| 48 | + implementation 'io.jsonwebtoken:jjwt-jackson:0.11.5' |
49 | 49 | implementation 'org.springframework.boot:spring-boot-starter-webflux' |
| 50 | + implementation 'org.springframework.boot:spring-boot-starter-actuator' |
50 | 51 |
|
51 | | - annotationProcessor 'org.projectlombok:lombok' |
52 | | - testImplementation 'org.springframework.boot:spring-boot-starter-test' |
53 | | - testImplementation 'org.springframework.security:spring-security-test' |
54 | | - testRuntimeOnly 'org.junit.platform:junit-platform-launcher' |
| 52 | + annotationProcessor 'org.projectlombok:lombok' |
| 53 | + testImplementation 'org.springframework.boot:spring-boot-starter-test' |
| 54 | + testImplementation 'org.springframework.security:spring-security-test' |
| 55 | + testRuntimeOnly 'org.junit.platform:junit-platform-launcher' |
55 | 56 | } |
56 | 57 |
|
57 | 58 | tasks.named('test') { |
58 | | - useJUnitPlatform() |
| 59 | + useJUnitPlatform() |
59 | 60 | } |
0 commit comments