This is an automated email from the ASF dual-hosted git repository.
pkarwasz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
The following commit(s) were added to refs/heads/main by this push:
new 6eed880f20 Port `log4j-jpl` changes from `2.x`
6eed880f20 is described below
commit 6eed880f20dcd6ff1e2e2198d8de5053c67462d1
Author: Piotr P. Karwasz <[email protected]>
AuthorDate: Wed Jan 3 17:53:46 2024 +0100
Port `log4j-jpl` changes from `2.x`
The only differences were in the POM file.
Part of #2016.
---
log4j-jpl/pom.xml | 32 +-------------------------------
1 file changed, 1 insertion(+), 31 deletions(-)
diff --git a/log4j-jpl/pom.xml b/log4j-jpl/pom.xml
index 21c12906a7..ff8885492f 100644
--- a/log4j-jpl/pom.xml
+++ b/log4j-jpl/pom.xml
@@ -29,16 +29,10 @@
<description>The Apache Log4j implementation of
java.lang.System.LoggerFinder</description>
<properties>
- <log4jParentDir>${basedir}/..</log4jParentDir>
<module.name>org.apache.logging.log4j.jpl</module.name>
</properties>
<dependencies>
- <dependency>
- <groupId>org.osgi</groupId>
- <artifactId>org.osgi.framework</artifactId>
- <scope>provided</scope>
- </dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
@@ -46,12 +40,7 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>com.lmax</groupId>
- <artifactId>disruptor</artifactId>
- <optional>true</optional>
+ <scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
@@ -74,23 +63,4 @@
<scope>test</scope>
</dependency>
</dependencies>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <!-- Manual override of the Surefire provider -->
- <!-- The `surefire-platform` provider initializes JUL before calling
our tests -->
- <dependencies>
- <dependency>
- <groupId>org.apache.maven.surefire</groupId>
- <artifactId>surefire-junit47</artifactId>
- <version>${surefire.version}</version>
- </dependency>
- </dependencies>
- </plugin>
- </plugins>
- </build>
-
</project>