This is an automated email from the ASF dual-hosted git repository. mattsicker pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
commit 47ef7729558e9522b14154af26ffae736f9e92cb Author: Matt Sicker <[email protected]> AuthorDate: Sun May 1 20:08:33 2022 -0500 Add explicit dependencies for OSGi tests Signed-off-by: Matt Sicker <[email protected]> --- log4j-osgi/pom.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/log4j-osgi/pom.xml b/log4j-osgi/pom.xml index 396a61413e..8029a5e97f 100644 --- a/log4j-osgi/pom.xml +++ b/log4j-osgi/pom.xml @@ -37,14 +37,28 @@ <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> + <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-plugins</artifactId> + <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-1.2-api</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.logging.log4j.samples</groupId> + <artifactId>log4j-samples-configuration</artifactId> + <version>${project.version}</version> + <scope>test</scope> </dependency> <!-- Place Felix before Equinox because Felix is signed. / also place it before org.osgi.core so that its versions of the OSGi classes are used --> <dependency>
