This is an automated email from the ASF dual-hosted git repository. grossws pushed a commit to branch build-refactoring in repository https://gitbox.apache.org/repos/asf/tika.git
commit ad7d63d9c7de1f6c7148de61e44efaaf94335513 Author: Konstantin Gribov <[email protected]> AuthorDate: Thu Nov 17 18:36:03 2022 +0300 Turn off enforcer plugin in the `tika-age-recognizer` --- tika-parsers/tika-parsers-ml/tika-age-recogniser/pom.xml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tika-parsers/tika-parsers-ml/tika-age-recogniser/pom.xml b/tika-parsers/tika-parsers-ml/tika-age-recogniser/pom.xml index 528527d20..9a339c580 100644 --- a/tika-parsers/tika-parsers-ml/tika-age-recogniser/pom.xml +++ b/tika-parsers/tika-parsers-ml/tika-age-recogniser/pom.xml @@ -233,7 +233,15 @@ </execution> </executions> </plugin> - + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-enforcer-plugin</artifactId> + <version>3.0.0-M3</version> + <configuration> + <!-- tika-age-recognizer is unsupported, skip it --> + <skip>true</skip> + </configuration> + </plugin> </plugins> </build> </project>
