This is an automated email from the ASF dual-hosted git repository.
tallison pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tika.git
The following commit(s) were added to refs/heads/main by this push:
new 189831deb add a fast build profile that skips tests and formatting
(#2433)
189831deb is described below
commit 189831deb947ca4062cfbd95914dbf7b7738b719
Author: Tim Allison <[email protected]>
AuthorDate: Tue Dec 9 14:41:16 2025 -0500
add a fast build profile that skips tests and formatting (#2433)
---
tika-parent/pom.xml | 27 ++++++++++++++++++++-------
1 file changed, 20 insertions(+), 7 deletions(-)
diff --git a/tika-parent/pom.xml b/tika-parent/pom.xml
index e8a378c92..fb4c09187 100644
--- a/tika-parent/pom.xml
+++ b/tika-parent/pom.xml
@@ -1600,13 +1600,26 @@
</plugins>
</build>
</profile>
- <profile>
- <id>ci</id>
- <properties>
- <!-- Override the Spotless goal when this profile is active -->
- <spotless.goal>check</spotless.goal>
- </properties>
- </profile>
+ <profile>
+ <id>ci</id>
+ <properties>
+ <!-- Override the Spotless goal when this profile is active -->
+ <spotless.goal>check</spotless.goal>
+ </properties>
+ </profile>
+ <profile>
+ <id>fast</id>
+ <properties>
+ <!-- Skip tests for fast builds -->
+ <skipTests>true</skipTests>
+ <maven.test.skip>true</maven.test.skip>
+ <!-- Skip checkstyle -->
+ <checkstyle.skip>true</checkstyle.skip>
+ <!-- Skip spotless -->
+ <spotless.apply.skip>true</spotless.apply.skip>
+ <spotless.check.skip>true</spotless.check.skip>
+ </properties>
+ </profile>
</profiles>
<!--