This is an automated email from the ASF dual-hosted git repository. rzo1 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/storm.git
commit 30f6798074b7260858e5aab38b34884c622bb371 Author: Richard Zowalla <[email protected]> AuthorDate: Tue Apr 7 19:57:59 2026 +0200 Add a no tests profile --- pom.xml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/pom.xml b/pom.xml index 0c16783fc..38f25d1f8 100644 --- a/pom.xml +++ b/pom.xml @@ -429,6 +429,37 @@ </pluginManagement> </build> </profile> + <profile> + <id>no-tests</id> + <properties> + <skipITs>true</skipITs> + <clojure.test.skip>true</clojure.test.skip> + </properties> + + <build> + <pluginManagement> + <plugins> + <!-- Unit tests --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skipTests>true</skipTests> + </configuration> + </plugin> + + <!-- Integration tests --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-failsafe-plugin</artifactId> + <configuration> + <skipITs>true</skipITs> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + </profile> <profile> <id>externals</id> <activation> @@ -1371,6 +1402,9 @@ <artifactId>clojure-maven-plugin</artifactId> <version>1.9.3</version> <extensions>true</extensions> + <configuration> + <skip>${clojure.test.skip}</skip> + </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId>
