This is an automated email from the ASF dual-hosted git repository.
jbonofre pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/karaf-decanter.git
The following commit(s) were added to refs/heads/main by this push:
new f4bbaa84 Exclude SocketCollectorTest on CI
f4bbaa84 is described below
commit f4bbaa848afbadb980c94dece7fa99e003c41390
Author: JB Onofré <[email protected]>
AuthorDate: Fri Feb 7 16:49:15 2025 +0100
Exclude SocketCollectorTest on CI
---
collector/log4j-socket/pom.xml | 22 +++++++++++++++++++++-
1 file changed, 21 insertions(+), 1 deletion(-)
diff --git a/collector/log4j-socket/pom.xml b/collector/log4j-socket/pom.xml
index 8b7ab45d..dc83cb3b 100644
--- a/collector/log4j-socket/pom.xml
+++ b/collector/log4j-socket/pom.xml
@@ -109,5 +109,25 @@
</executions>
</plugin>
</plugins>
- </build>
+ </build>
+
+ <profiles>
+ <profile>
+ <id>ci</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <exclude>**/SocketCollectorTest.java</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
</project>