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 f6ac5c35 Exclude SocketCollectorTest from CI
f6ac5c35 is described below
commit f6ac5c3559115d70cb76e207727c49ddc3c3273c
Author: JB Onofré <[email protected]>
AuthorDate: Fri Feb 7 08:21:39 2025 +0100
Exclude SocketCollectorTest from CI
---
collector/socket/pom.xml | 22 +++++++++++++++++++++-
1 file changed, 21 insertions(+), 1 deletion(-)
diff --git a/collector/socket/pom.xml b/collector/socket/pom.xml
index 87dd519b..6fe080fa 100644
--- a/collector/socket/pom.xml
+++ b/collector/socket/pom.xml
@@ -120,5 +120,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>