Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit 64089f3

Browse files
authored
fix: Add missing used dependency and remove force-usage for dependency-plugin for a now explicitly used dependency (#7364)
2 parents ad568cc + 3112504 commit 64089f3

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

core/pom.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,11 @@ Copyright (c) 2012 Jeremy Long. All Rights Reserved.
228228
<artifactId>logback-classic</artifactId>
229229
<scope>test</scope>
230230
</dependency>
231+
<dependency>
232+
<groupId>ch.qos.logback</groupId>
233+
<artifactId>logback-core</artifactId>
234+
<scope>test</scope>
235+
</dependency>
231236
<dependency>
232237
<groupId>org.owasp</groupId>
233238
<artifactId>dependency-check-utils</artifactId>
@@ -506,9 +511,6 @@ Copyright (c) 2012 Jeremy Long. All Rights Reserved.
506511
<version>${maven-dependency-plugin.version}</version>
507512
<configuration>
508513
<usedDependencies combine.children="append">
509-
<!-- logback is our logging implementation during test and is test-scoped due to a lack of a
510-
test-runtime scope - it should be considered 'used' in the context of dependency:analyze-report -->
511-
<usedDependency>ch.qos.logback:logback-classic</usedDependency>
512514
<!-- dependencies to be copied for use in unit/integration testcases are, due to
513515
lack of a test-runtime scope, configured as test-scoped / optional and should be
514516
considered used for dependency:analyze-report -->

0 commit comments

Comments
 (0)