This is an automated email from the ASF dual-hosted git repository. pkarwasz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
commit f1c99919021c0eea3be8c37b4c50809e9e5e466c Author: Piotr P. Karwasz <[email protected]> AuthorDate: Fri Sep 30 03:39:38 2022 +0200 Fix compile scope of `log4j-jndi-test` --- log4j-jndi-test/pom.xml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/log4j-jndi-test/pom.xml b/log4j-jndi-test/pom.xml index 481e901c76..c244ce98d4 100644 --- a/log4j-jndi-test/pom.xml +++ b/log4j-jndi-test/pom.xml @@ -50,6 +50,15 @@ <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + </dependency> + <!-- Useful mock classes and utilities --> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-test</artifactId> + </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core-test</artifactId> @@ -75,12 +84,6 @@ <artifactId>junit-vintage-engine</artifactId> <scope>test</scope> </dependency> - <!-- Useful mock classes and utilities --> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-test</artifactId> - <scope>test</scope> - </dependency> </dependencies> <build> <plugins>
