This is an automated email from the ASF dual-hosted git repository. tallison pushed a commit to branch branch_3x in repository https://gitbox.apache.org/repos/asf/tika.git
commit 582cb963f9cbfadf3fce495ccfc4b4bb8abe3d0e 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 2893934251..8ee0bca7db 100644 --- a/tika-parent/pom.xml +++ b/tika-parent/pom.xml @@ -1555,13 +1555,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> <!--
