This is an automated email from the ASF dual-hosted git repository. tallison pushed a commit to branch add-fast-build-profile in repository https://gitbox.apache.org/repos/asf/tika.git
commit 48fdc1777dc57fcbd1fe8f220ad02a7bf8012878 Author: tallison <[email protected]> AuthorDate: Tue Dec 9 12:54:07 2025 -0500 add a fast build profile that skips tests and formatting --- 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> <!--
