This is an automated email from the ASF dual-hosted git repository.
rskraba pushed a commit to branch branch-1.12
in repository https://gitbox.apache.org/repos/asf/avro.git
The following commit(s) were added to refs/heads/branch-1.12 by this push:
new 026d678f1b AVRO-4219: Make skipQuality profile top-level (#3590)
026d678f1b is described below
commit 026d678f1b0e28e95f8266e75346c1286889d9cd
Author: Ryan Skraba <[email protected]>
AuthorDate: Mon Dec 8 20:55:22 2025 +0100
AVRO-4219: Make skipQuality profile top-level (#3590)
---
lang/java/pom.xml | 15 ---------------
pom.xml | 13 +++++++++++++
2 files changed, 13 insertions(+), 15 deletions(-)
diff --git a/lang/java/pom.xml b/lang/java/pom.xml
index 0be0baac75..c347725af7 100644
--- a/lang/java/pom.xml
+++ b/lang/java/pom.xml
@@ -382,21 +382,6 @@
</reporting>
<profiles>
-
- <profile>
- <id>skipQuality</id>
- <properties>
- <skipTests>true</skipTests>
- <rat.skip>true</rat.skip>
- <checkstyle.skip>true</checkstyle.skip>
- <spotless.skip>true</spotless.skip>
- <invoker.skip>true</invoker.skip>
- <cyclonedx.skip>true</cyclonedx.skip>
- <gpg.skip>true</gpg.skip>
- <maven.build.cache.skipCache>true</maven.build.cache.skipCache>
- </properties>
- </profile>
-
<profile>
<id>m2e</id>
<activation>
diff --git a/pom.xml b/pom.xml
index b63b89934f..1c36c072b2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -597,6 +597,19 @@
</plugins>
</build>
</profile>
+ <profile>
+ <id>skipQuality</id>
+ <properties>
+ <skipTests>true</skipTests>
+ <rat.skip>true</rat.skip>
+ <checkstyle.skip>true</checkstyle.skip>
+ <spotless.skip>true</spotless.skip>
+ <invoker.skip>true</invoker.skip>
+ <cyclonedx.skip>true</cyclonedx.skip>
+ <gpg.skip>true</gpg.skip>
+ <maven.build.cache.skipCache>true</maven.build.cache.skipCache>
+ </properties>
+ </profile>
</profiles>
</project>