Skip to content

Commit 494b31e

Browse files
authored
HDDS-14606. Move dependency on slf4j-reload4j to runnable modules (#9787)
1 parent 4c9b38c commit 494b31e

18 files changed

Lines changed: 85 additions & 5 deletions

File tree

hadoop-hdds/common/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,6 @@
167167
<artifactId>jcl-over-slf4j</artifactId>
168168
<scope>runtime</scope>
169169
</dependency>
170-
<dependency>
171-
<groupId>org.slf4j</groupId>
172-
<artifactId>slf4j-reload4j</artifactId>
173-
<scope>runtime</scope>
174-
</dependency>
175170

176171
<!-- Test dependencies -->
177172
<dependency>

hadoop-hdds/framework/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,11 @@
304304
<artifactId>log4j-core</artifactId>
305305
<scope>runtime</scope>
306306
</dependency>
307+
<dependency>
308+
<groupId>org.slf4j</groupId>
309+
<artifactId>slf4j-reload4j</artifactId>
310+
<scope>runtime</scope>
311+
</dependency>
307312
<dependency>
308313
<groupId>org.xerial.snappy</groupId>
309314
<artifactId>snappy-java</artifactId>

hadoop-hdds/server-scm/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,11 @@
174174
<artifactId>hdds-docs</artifactId>
175175
<scope>provided</scope>
176176
</dependency>
177+
<dependency>
178+
<groupId>org.slf4j</groupId>
179+
<artifactId>slf4j-reload4j</artifactId>
180+
<scope>runtime</scope>
181+
</dependency>
177182

178183
<!-- Test dependencies -->
179184
<dependency>

hadoop-ozone/cli-admin/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,11 @@
135135
<artifactId>commons-codec</artifactId>
136136
<scope>runtime</scope>
137137
</dependency>
138+
<dependency>
139+
<groupId>org.slf4j</groupId>
140+
<artifactId>slf4j-reload4j</artifactId>
141+
<scope>runtime</scope>
142+
</dependency>
138143

139144
<!-- Test dependencies -->
140145
<dependency>

hadoop-ozone/cli-debug/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,11 @@
211211
<artifactId>commons-codec</artifactId>
212212
<scope>runtime</scope>
213213
</dependency>
214+
<dependency>
215+
<groupId>org.slf4j</groupId>
216+
<artifactId>slf4j-reload4j</artifactId>
217+
<scope>runtime</scope>
218+
</dependency>
214219

215220
<!-- Test dependencies -->
216221
<dependency>

hadoop-ozone/cli-repair/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,11 @@
149149
<artifactId>commons-codec</artifactId>
150150
<scope>runtime</scope>
151151
</dependency>
152+
<dependency>
153+
<groupId>org.slf4j</groupId>
154+
<artifactId>slf4j-reload4j</artifactId>
155+
<scope>runtime</scope>
156+
</dependency>
152157

153158
<!-- Test dependencies -->
154159
<dependency>

hadoop-ozone/cli-shell/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,11 @@
126126
<artifactId>ozone-filesystem</artifactId>
127127
<scope>runtime</scope>
128128
</dependency>
129+
<dependency>
130+
<groupId>org.slf4j</groupId>
131+
<artifactId>slf4j-reload4j</artifactId>
132+
<scope>runtime</scope>
133+
</dependency>
129134
<dependency>
130135
<groupId>org.apache.ozone</groupId>
131136
<artifactId>hdds-config</artifactId>

hadoop-ozone/csi/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,11 @@
198198
<classifier>linux-x86_64</classifier>
199199
<scope>runtime</scope>
200200
</dependency>
201+
<dependency>
202+
<groupId>org.slf4j</groupId>
203+
<artifactId>slf4j-reload4j</artifactId>
204+
<scope>runtime</scope>
205+
</dependency>
201206
</dependencies>
202207

203208
<build>

hadoop-ozone/datanode/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@
4242
<artifactId>jaxb-runtime</artifactId>
4343
<scope>runtime</scope>
4444
</dependency>
45+
<dependency>
46+
<groupId>org.slf4j</groupId>
47+
<artifactId>slf4j-reload4j</artifactId>
48+
<scope>runtime</scope>
49+
</dependency>
4550
</dependencies>
4651
<build>
4752
<plugins>

hadoop-ozone/freon/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,11 @@
188188
<artifactId>metainf-services</artifactId>
189189
<scope>provided</scope>
190190
</dependency>
191+
<dependency>
192+
<groupId>org.slf4j</groupId>
193+
<artifactId>slf4j-reload4j</artifactId>
194+
<scope>runtime</scope>
195+
</dependency>
191196

192197
<!-- Test dependencies -->
193198
<dependency>

0 commit comments

Comments
 (0)