This is an automated email from the ASF dual-hosted git repository.
vy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
The following commit(s) were added to refs/heads/master by this push:
new 551a747eab LOG4J2-3502 Disable ITs for JTL tests.
551a747eab is described below
commit 551a747eab459ef534b20250a1477e1c7f18233f
Author: Volkan Yazıcı <[email protected]>
AuthorDate: Wed Jun 22 08:46:07 2022 +0200
LOG4J2-3502 Disable ITs for JTL tests.
---
log4j-layout-template-json-test/pom.xml | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/log4j-layout-template-json-test/pom.xml
b/log4j-layout-template-json-test/pom.xml
index 241e6c5d99..b0ccb4dad9 100644
--- a/log4j-layout-template-json-test/pom.xml
+++ b/log4j-layout-template-json-test/pom.xml
@@ -258,6 +258,25 @@
</configuration>
</plugin>
+ <!-- Disable ITs, which are Docker-dependent, by default.
+ Running Docker on all expected environments (OSes, Docker-disabled
CI hosts, etc.) is still needs to be worked out.
+ Next to that, certain container images (e.g., ELK stack) require
environment-specific limits (e.g., `nofile`). -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-failsafe-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>integration-test</goal>
+ <goal>verify</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+
</plugins>
</build>