This is an automated email from the ASF dual-hosted git repository.

rzo1 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/opennlp-site.git


The following commit(s) were added to refs/heads/main by this push:
     new f125e560 Updates website with 2.5.3
f125e560 is described below

commit f125e560cafa7f524afc29a1b64265c16ae9c4e1
Author: Richard Zowalla <[email protected]>
AuthorDate: Fri Jan 10 09:21:33 2025 +0100

    Updates website with 2.5.3
---
 .github/workflows/main.yml                 |  3 +-
 pom.xml                                    | 11 ++++++++
 src/main/jbake/assets/doap_opennlp.rdf     |  4 +--
 src/main/jbake/content/news/release-253.ad | 44 ++++++++++++++++++++++++++++++
 src/main/jbake/jbake.properties            |  4 +--
 5 files changed, 61 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 057d3eb2..048c9f7e 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -66,4 +66,5 @@ jobs:
           [ -d target/opennlp-site/docs/2.4.0 ] && echo 'docs for 2.4.0 exists'
           [ -d target/opennlp-site/docs/2.5.0 ] && echo 'docs for 2.5.0 exists'
           [ -d target/opennlp-site/docs/2.5.1 ] && echo 'docs for 2.5.1 exists'
-          [ -d target/opennlp-site/docs/2.5.2 ] && echo 'docs for 2.5.2 exists'
\ No newline at end of file
+          [ -d target/opennlp-site/docs/2.5.2 ] && echo 'docs for 2.5.2 exists'
+          [ -d target/opennlp-site/docs/2.5.3 ] && echo 'docs for 2.5.3 exists'
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index ac7edf21..f7267424 100644
--- a/pom.xml
+++ b/pom.xml
@@ -529,6 +529,17 @@
                   
<outputDirectory>${project.build.directory}/distr/2.5.2</outputDirectory>
                   <excludes>**/lib/**/*</excludes>
                 </artifactItem>
+
+                <artifactItem>
+                  <groupId>org.apache.opennlp</groupId>
+                  <artifactId>opennlp-distr</artifactId>
+                  <version>2.5.3</version>
+                  <overWrite>false</overWrite>
+                  <type>zip</type>
+                  <classifier>bin</classifier>
+                  
<outputDirectory>${project.build.directory}/distr/2.5.3</outputDirectory>
+                  <excludes>**/lib/**/*</excludes>
+                </artifactItem>
               </artifactItems>
             </configuration>
           </execution>
diff --git a/src/main/jbake/assets/doap_opennlp.rdf 
b/src/main/jbake/assets/doap_opennlp.rdf
index aebdd3d0..2cc3331b 100644
--- a/src/main/jbake/assets/doap_opennlp.rdf
+++ b/src/main/jbake/assets/doap_opennlp.rdf
@@ -37,8 +37,8 @@
     <release>
       <Version>
         <name>Apache OpenNLP</name>
-        <created>2024-12-27</created>
-        <revision>2.5.2</revision>
+        <created>2025-01-10</created>
+        <revision>2.5.3</revision>
       </Version>
     </release>
     <repository>
diff --git a/src/main/jbake/content/news/release-253.ad 
b/src/main/jbake/content/news/release-253.ad
new file mode 100644
index 00000000..a28acad8
--- /dev/null
+++ b/src/main/jbake/content/news/release-253.ad
@@ -0,0 +1,44 @@
+////
+   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.5.3 released
+Apache OpenNLP
+2024-12-27
+: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.5.3.
+
+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.5.3 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.5.3
+
+In total, this patch release tackles 5 issues. It fixes a regression in the 
binary distribution and brings some other improvements.
+
+For all changes, please see the full list found in 
link:https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311215&version=12355519[Jira,role=external,window=_blank].
+
+--The Apache OpenNLP Team
diff --git a/src/main/jbake/jbake.properties b/src/main/jbake/jbake.properties
index 0ce92e1d..e11dab74 100755
--- a/src/main/jbake/jbake.properties
+++ b/src/main/jbake/jbake.properties
@@ -32,8 +32,8 @@ template.news.file=news.ftl
 #db.store=local
 asciidoctor.attributes.export=true
 asciidoctor.attributes.export.prefix=
-opennlp.version=2.5.2
-opennlp.next.version=2.5.3-SNAPSHOT
+opennlp.version=2.5.3
+opennlp.next.version=2.5.4-SNAPSHOT
 opennlp.models=ud-models-1.2
 opennlp.downloads=https://downloads.apache.org/opennlp/models
 ud.version=2.15
\ No newline at end of file

Reply via email to