質問編集履歴

1

不要な依存関係の記述削除

2023/06/21 04:15

投稿

S-N-G-T-O
S-N-G-T-O

スコア1

test CHANGED
File without changes
test CHANGED
@@ -44,32 +44,10 @@
44
44
  mavenCentral()
45
45
  }
46
46
 
47
- configurations {
48
- compileOnly {
49
- extendsFrom annotationProcessor
50
- }
51
- testCompileOnly {
52
- extendsFrom testAnnotationProcessor
53
- }
54
- }
55
-
56
47
  dependencies {
57
48
  // Spring
58
49
  implementation 'org.springframework.boot:spring-boot-starter-web'
59
- implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
60
- implementation 'org.springframework.retry:spring-retry'
61
- implementation 'org.springframework.boot:spring-boot-starter-aop'
62
50
  testImplementation 'org.springframework.boot:spring-boot-starter-test'
63
- testImplementation 'org.springframework.security:spring-security-test'
64
-
65
- // Apache Commons Lang3
66
- implementation "org.apache.commons:commons-lang3:3.12.0"
67
-
68
- // lombok
69
- compileOnly 'org.projectlombok:lombok'
70
- annotationProcessor 'org.projectlombok:lombok'
71
- testCompileOnly 'org.projectlombok:lombok'
72
- testAnnotationProcessor 'org.projectlombok:lombok'
73
51
 
74
52
  // JUnit
75
53
  testImplementation 'org.junit.jupiter:junit-jupiter:5.9.1'
@@ -130,7 +108,6 @@
130
108
  // Spring
131
109
  developmentOnly 'org.springframework.boot:spring-boot-devtools'
132
110
  api 'org.springframework.boot:spring-boot-starter-validation'
133
- implementation 'org.springframework.boot:spring-boot-starter-cache'
134
111
  }
135
112
  ```
136
113