This is an automated email from the ASF dual-hosted git repository. mawiesne pushed a commit to branch add-apidocs-to-bin-file-assembly in repository https://gitbox.apache.org/repos/asf/opennlp.git
commit e331933fb7655fa8529fdaf51ce84a483c977bce Author: Martin Wiesner <[email protected]> AuthorDate: Thu Jun 25 08:19:16 2026 +0200 Includes opennlp-spellcheck extension apidocs in assembly of binary distr files Updates Dockerfile to ship with Java 21 alpine image --- opennlp-distr/src/main/assembly/bin.xml | 7 +++++++ opennlp-distr/src/main/docker/Dockerfile | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/opennlp-distr/src/main/assembly/bin.xml b/opennlp-distr/src/main/assembly/bin.xml index 1c71d2019..c56ce30d8 100644 --- a/opennlp-distr/src/main/assembly/bin.xml +++ b/opennlp-distr/src/main/assembly/bin.xml @@ -225,6 +225,13 @@ <outputDirectory>docs/apidocs/opennlp-morfologik</outputDirectory> </fileSet> + <fileSet> + <directory>../opennlp-extensions/opennlp-spellcheck/target/reports/apidocs</directory> + <fileMode>644</fileMode> + <directoryMode>755</directoryMode> + <outputDirectory>docs/apidocs/opennlp-spellcheck</outputDirectory> + </fileSet> + <fileSet> <directory>../opennlp-extensions/opennlp-uima/target/reports/apidocs</directory> <fileMode>644</fileMode> diff --git a/opennlp-distr/src/main/docker/Dockerfile b/opennlp-distr/src/main/docker/Dockerfile index ee80aeda5..adf03ea4f 100644 --- a/opennlp-distr/src/main/docker/Dockerfile +++ b/opennlp-distr/src/main/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM openjdk:17-alpine +FROM openjdk:21-alpine MAINTAINER Apache OpenNLP ([email protected]) ARG OPENNLP_BINARY
