This is an automated email from the ASF dual-hosted git repository.
tballison pushed a change to branch TIKA-4848-cleanups
in repository https://gitbox.apache.org/repos/asf/tika.git
from 3ffe259bcb further reviewer feedback
add 3b6fd2436b TIKA-4864: resolve the default plugins dir against the
install layout and make it absolute (#3107)
add 70257403a4 TIKA-4864 - fix windows (#3110)
add 2bd52a0bf4 TIKA-4866: include cjk fonts in tika-full docker image
(#3111)
add 314b35eb7d TIKA-4865 -- tika-grpc: resolve the plugin-roots fallback
via DefaultPluginsDir and WARN when no plugins directory exists (#3109)
add f9ed0cbee6 TIKA-4867 -- parallelize CI reactors with -T1C, run
apache-rat serially (#3112)
add 76b3bf070b Merge branch 'main' into TIKA-4848-cleanups
No new revisions were added by this update.
Summary of changes:
.github/workflows/main-jdk17-build.yml | 22 ++++-
.github/workflows/main-jdk17-locale-build.yml | 3 +-
.github/workflows/main-jdk17-windows-build.yml | 2 +-
.github/workflows/main-jdk21-build.yml | 2 +-
.github/workflows/main-jdk25-build.yml | 2 +-
CHANGES.txt | 24 +++++
tika-grpc/docker-build/Dockerfile | 1 +
.../apache/tika/pipes/grpc/TikaGrpcServerImpl.java | 17 +++-
.../org/apache/tika/async/cli/PluginsWriter.java | 3 +-
.../org/apache/tika/async/cli/TikaAsyncCLI.java | 35 +------
.../apache/tika/async/cli/AsyncCliParserTest.java | 8 +-
.../tika/pipes/core/config/DefaultPluginsDir.java | 103 +++++++++++++++++++++
.../pipes/core/config/DefaultPluginsDirTest.java | 59 ++++++++++++
.../apache/tika/pipes/fork/PipesForkParser.java | 29 +-----
tika-server/docker-build/full/Dockerfile | 4 +-
tika-server/docker-build/full/Dockerfile.snapshot | 1 +
tika-server/docker-build/minimal/Dockerfile | 3 -
.../apache/tika/server/core/TikaServerProcess.java | 31 +------
18 files changed, 242 insertions(+), 107 deletions(-)
create mode 100644
tika-pipes/tika-pipes-core/src/main/java/org/apache/tika/pipes/core/config/DefaultPluginsDir.java
create mode 100644
tika-pipes/tika-pipes-core/src/test/java/org/apache/tika/pipes/core/config/DefaultPluginsDirTest.java