Skip to content

Commit d1c6cff

Browse files
committed
Implement #615
1 parent 20814d7 commit d1c6cff

5 files changed

Lines changed: 29 additions & 83 deletions

File tree

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,7 @@
340340
<groupId>org.slf4j</groupId>
341341
<artifactId>slf4j-simple</artifactId>
342342
<version>1.7.7</version>
343+
<scope>test</scope>
343344
</dependency>
344345

345346
<dependency>

sparql-anything-archive/src/main/resources/log4j.properties

Lines changed: 0 additions & 37 deletions
This file was deleted.

sparql-anything-cli/pom.xml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -164,11 +164,6 @@
164164
<artifactId>commons-cli</artifactId>
165165
</dependency>
166166

167-
<dependency>
168-
<groupId>org.slf4j</groupId>
169-
<artifactId>slf4j-simple</artifactId>
170-
</dependency>
171-
172167
<dependency>
173168
<groupId>junit</groupId>
174169
<artifactId>junit</artifactId>
@@ -237,6 +232,12 @@
237232
</plugin>
238233
</plugins>
239234
</build>
235+
<dependencies>
236+
<dependency>
237+
<groupId>org.slf4j</groupId>
238+
<artifactId>slf4j-simple</artifactId>
239+
</dependency>
240+
</dependencies>
240241
</profile>
241242

242243
<profile>
@@ -309,6 +310,10 @@
309310
<groupId>jakarta.xml.bind</groupId>
310311
<artifactId>jakarta.xml.bind-api</artifactId>
311312
</dependency>
313+
<dependency>
314+
<groupId>org.slf4j</groupId>
315+
<artifactId>slf4j-simple</artifactId>
316+
</dependency>
312317
</dependencies>
313318
</profile>
314319

sparql-anything-fuseki/pom.xml

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -143,10 +143,6 @@
143143
<groupId>org.freemarker</groupId>
144144
<artifactId>freemarker</artifactId>
145145
</dependency>
146-
<dependency>
147-
<groupId>org.slf4j</groupId>
148-
<artifactId>slf4j-simple</artifactId>
149-
</dependency>
150146

151147
<!-- Test dependencies -->
152148
<dependency>
@@ -212,6 +208,12 @@
212208
</plugin>
213209
</plugins>
214210
</build>
211+
<dependencies>
212+
<dependency>
213+
<groupId>org.slf4j</groupId>
214+
<artifactId>slf4j-simple</artifactId>
215+
</dependency>
216+
</dependencies>
215217
</profile>
216218
<profile>
217219
<id>generate-cli-jar-geosparql</id>
@@ -278,6 +280,11 @@
278280
<groupId>jakarta.xml.bind</groupId>
279281
<artifactId>jakarta.xml.bind-api</artifactId>
280282
</dependency>
283+
284+
<dependency>
285+
<groupId>org.slf4j</groupId>
286+
<artifactId>slf4j-simple</artifactId>
287+
</dependency>
281288
</dependencies>
282289
</profile>
283290
</profiles>
@@ -300,6 +307,13 @@
300307
<groupId>org.codehaus.mojo</groupId>
301308
<artifactId>exec-maven-plugin</artifactId>
302309
<version>3.1.0</version>
310+
<dependencies>
311+
<dependency>
312+
<groupId>org.slf4j</groupId>
313+
<artifactId>slf4j-simple</artifactId>
314+
<version>1.7.7</version>
315+
</dependency>
316+
</dependencies>
303317
<executions>
304318
<execution>
305319
<id>generate-snippets</id>

sparql-anything-parser/src/main/resources/log4j.properties

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)