Skip to content

Commit

Permalink
Updates Website with OpenNLP 2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rzo1 committed Feb 4, 2024
1 parent 6bd4a9d commit 3329dc2
Show file tree
Hide file tree
Showing 6 changed files with 73 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,5 @@ jobs:
[ -d target/opennlp-site/docs/2.1.1 ] && echo 'docs for 2.1.0 exists'
[ -d target/opennlp-site/docs/2.2.0 ] && echo 'docs for 2.2.0 exists'
[ -d target/opennlp-site/docs/2.3.0 ] && echo 'docs for 2.3.0 exists'
[ -d target/opennlp-site/docs/2.3.1 ] && echo 'docs for 2.3.1 exists'
[ -d target/opennlp-site/docs/2.3.1 ] && echo 'docs for 2.3.1 exists'
[ -d target/opennlp-site/docs/2.3.2 ] && echo 'docs for 2.3.2 exists'
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,17 @@
<excludes>**/lib/**/*</excludes>
</artifactItem>

<artifactItem>
<groupId>org.apache.opennlp</groupId>
<artifactId>opennlp-distr</artifactId>
<version>2.3.2</version>
<overWrite>false</overWrite>
<type>zip</type>
<classifier>bin</classifier>
<outputDirectory>${project.build.directory}/distr/2.3.2</outputDirectory>
<excludes>**/lib/**/*</excludes>
</artifactItem>

</artifactItems>
</configuration>
</execution>
Expand Down
4 changes: 2 additions & 2 deletions src/main/jbake/assets/doap_opennlp.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
<release>
<Version>
<name>Apache OpenNLP</name>
<created>2023-11-22</created>
<revision>2.3.1</revision>
<created>2024-02-04</created>
<revision>2.3.2</revision>
</Version>
</release>
<repository>
Expand Down
7 changes: 7 additions & 0 deletions src/main/jbake/content/docs/legacy.ad
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ WARNING: This page contains the archived documentation. Please refer to link:/do
There exists a manual and Javadoc API documentation for Apache OpenNLP. The manual
explains how the various OpenNLP components can be used and trained.

== Apache OpenNLP 2.3.2 documentation
* link:/docs/2.3.2/manual/opennlp.html[Apache OpenNLP Manual]
* link:/docs/2.3.2/apidocs/opennlp-tools/index.html[Apache OpenNLP Tools Javadoc]
* link:/docs/2.3.2/apidocs/opennlp-uima/index.html[Apache OpenNLP UIMA Javadoc]
* link:/docs/2.3.2/apidocs/opennlp-brat-annotator/index.html[Apache OpenNLP BRAT Annotator Javadoc]
* link:/docs/2.3.2/apidocs/opennlp-morfologik-addon/index.html[Apache OpenNLP Morfologik Addon Javadoc]

== Apache OpenNLP 2.3.1 documentation
* link:/docs/2.3.1/manual/opennlp.html[Apache OpenNLP Manual]
* link:/docs/2.3.1/apidocs/opennlp-tools/index.html[Apache OpenNLP Tools Javadoc]
Expand Down
49 changes: 49 additions & 0 deletions src/main/jbake/content/news/release-232.ad
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
////
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
////
= Apache OpenNLP 2.3.2 released
Apache OpenNLP
2024-02-04
:jbake-type: post
:jbake-tags: community
:jbake-status: published
:category: news
:idprefix:

The Apache OpenNLP team is pleased to announce the release of Apache OpenNLP 2.3.2.

The Apache OpenNLP library is a machine learning based toolkit for the processing of natural language text.

It supports the most common NLP tasks, such as tokenization, sentence segmentation, part-of-speech tagging, named entity extraction, chunking, parsing, and coreference resolution.

Apache OpenNLP 2.3.2 binary and source distributions are available for download from our download page: link:/download.html[download page]

The OpenNLP library is distributed by Maven Central as well. See the Maven Dependency page for more details: link:/maven-dependency.html[Maven Dependency]

== What's new in Apache OpenNLP 2.3.2

In this release we fixed several bugs and upgraded some dependencies. In addition, we added abbreviation dictionaries for several languages.
Moreover, we addressed a memory issue (OPENNLP-421) which occurs for large dictionaries due to String interning. Several new configuration
options have been added to choose a strategy. Details can be found in the related Jira / PR.

We switched the default onnx runtime dependency in opennlp-dl to the cpu variant. If you need to use the GPU accelerated version of onxx,
you can use the newly added module opennlp-dl-gpu. Moreover, we fixed the CLI on the Windows plattform.

For a full list of improvements, please see the list of items addressed in link:https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311215&version=12353945[Jira].

--The Apache OpenNLP Team
4 changes: 2 additions & 2 deletions src/main/jbake/jbake.properties
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ template.news.file=news.ftl
#db.store=local
asciidoctor.attributes.export=true
asciidoctor.attributes.export.prefix=
opennlp.version=2.3.1
opennlp.next.version=2.3.2-SNAPSHOT
opennlp.version=2.3.2
opennlp.next.version=2.3.3-SNAPSHOT

0 comments on commit 3329dc2

Please sign in to comment.