This is an automated email from the ASF dual-hosted git repository.
cdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git
The following commit(s) were added to refs/heads/develop by this push:
new 4286a89797 fix: Addressed some surefire and junit 5 releated isses,
that only occured when validating the RC.
4286a89797 is described below
commit 4286a897970d530aac851f42dfef0029e627a685
Author: Christofer Dutz <[email protected]>
AuthorDate: Sat Aug 2 14:21:19 2025 +0200
fix: Addressed some surefire and junit 5 releated isses, that only occured
when validating the RC.
---
.mvn/extensions.xml | 2 +-
code-generation/language/c/pom.xml | 7 +++++++
code-generation/language/cs/pom.xml | 12 ++++++++++++
code-generation/language/go/pom.xml | 7 +++++++
code-generation/language/java/pom.xml | 7 +++++++
code-generation/language/python/pom.xml | 7 +++++++
6 files changed, 41 insertions(+), 1 deletion(-)
diff --git a/.mvn/extensions.xml b/.mvn/extensions.xml
index a640a2bb6c..225c1db4a9 100644
--- a/.mvn/extensions.xml
+++ b/.mvn/extensions.xml
@@ -21,7 +21,7 @@
<extension>
<groupId>com.gradle</groupId>
<artifactId>develocity-maven-extension</artifactId>
- <version>2.1</version>
+ <version>2.0</version>
</extension>
<extension>
<groupId>com.gradle</groupId>
diff --git a/code-generation/language/c/pom.xml
b/code-generation/language/c/pom.xml
index 4357b39072..3be53c07f2 100644
--- a/code-generation/language/c/pom.xml
+++ b/code-generation/language/c/pom.xml
@@ -38,6 +38,13 @@
<build>
<plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
diff --git a/code-generation/language/cs/pom.xml
b/code-generation/language/cs/pom.xml
index 4335150a11..d514cf164d 100644
--- a/code-generation/language/cs/pom.xml
+++ b/code-generation/language/cs/pom.xml
@@ -36,6 +36,18 @@
<project.build.outputTimestamp>2025-07-31T16:36:55Z</project.build.outputTimestamp>
</properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
<dependencies>
<!-- We are using the Freemarker module to generate Java code -->
<dependency>
diff --git a/code-generation/language/go/pom.xml
b/code-generation/language/go/pom.xml
index 0c7bad3890..921042d154 100644
--- a/code-generation/language/go/pom.xml
+++ b/code-generation/language/go/pom.xml
@@ -38,6 +38,13 @@
<build>
<plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
diff --git a/code-generation/language/java/pom.xml
b/code-generation/language/java/pom.xml
index b1fc47e8e3..67f4c9a72c 100644
--- a/code-generation/language/java/pom.xml
+++ b/code-generation/language/java/pom.xml
@@ -38,6 +38,13 @@
<build>
<plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
diff --git a/code-generation/language/python/pom.xml
b/code-generation/language/python/pom.xml
index 975a6b27b4..5a2c13f24f 100644
--- a/code-generation/language/python/pom.xml
+++ b/code-generation/language/python/pom.xml
@@ -38,6 +38,13 @@
<build>
<plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>