This is an automated email from the ASF dual-hosted git repository.
pkarwasz pushed a commit to branch 2.x
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
The following commit(s) were added to refs/heads/2.x by this push:
new 4a1a1455e5 Synchronize OSGi test names with `main`
4a1a1455e5 is described below
commit 4a1a1455e59447ad03b00fc8af21445b67a9c186
Author: Piotr P. Karwasz <[email protected]>
AuthorDate: Tue Jun 18 14:46:48 2024 +0200
Synchronize OSGi test names with `main`
---
log4j-osgi-test/pom.xml | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/log4j-osgi-test/pom.xml b/log4j-osgi-test/pom.xml
index 4bb4d2b179..d8e241ce79 100644
--- a/log4j-osgi-test/pom.xml
+++ b/log4j-osgi-test/pom.xml
@@ -203,7 +203,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<classpathDependencyExcludes>
-
<classpathDependencyExclude>org.osgi:org.osgi.framework</classpathDependencyExclude>
+ <exclude>org.osgi:org.osgi.framework</exclude>
</classpathDependencyExcludes>
<systemPropertyVariables>
<!-- PAX logging has a copy of Log4j2 API-->
@@ -221,13 +221,13 @@
<phase>none</phase>
</execution>
<execution>
- <id>equinox-test</id>
+ <id>test-equinox</id>
<goals>
<goal>test</goal>
</goals>
<configuration>
<classpathDependencyExcludes combine.children="append">
-
<classpathDependencyExclude>org.apache.felix:org.apache.felix.framework</classpathDependencyExclude>
+ <exclude>org.apache.felix:org.apache.felix.framework</exclude>
</classpathDependencyExcludes>
<excludes>
<exclude>org.apache.logging.log4j.osgi.tests.FelixLoadApiBundleTest</exclude>
@@ -235,13 +235,13 @@
</configuration>
</execution>
<execution>
- <id>felix-test</id>
+ <id>test-felix</id>
<goals>
<goal>test</goal>
</goals>
<configuration>
<classpathDependencyExcludes combine.children="append">
-
<classpathDependencyExclude>org.eclipse.platform:org.eclipse.osgi</classpathDependencyExclude>
+ <exclude>org.eclipse.platform:org.eclipse.osgi</exclude>
</classpathDependencyExcludes>
<excludes>
<exclude>org.apache.logging.log4j.osgi.tests.EquinoxLoadApiBundleTest</exclude>