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

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

commit 4f7c7627c493cd588c94dde9e67f09819980f7b1
Author: Richard Zowalla <[email protected]>
AuthorDate: Mon May 27 16:51:02 2024 +0200

    OPENNLP-1560 - Add POS Models
---
 opennlp-models-pos/opennlp-models-pos-de/pom.xml   | 74 ++++++++++++++++++++++
 .../src/main/resources/model.properties            |  9 +--
 opennlp-models-pos/opennlp-models-pos-en/pom.xml   | 74 ++++++++++++++++++++++
 .../src/main/resources/model.properties            |  9 +--
 opennlp-models-pos/opennlp-models-pos-fr/pom.xml   | 74 ++++++++++++++++++++++
 .../src/main/resources/model.properties            |  9 +--
 opennlp-models-pos/opennlp-models-pos-it/pom.xml   | 74 ++++++++++++++++++++++
 .../src/main/resources/model.properties            |  9 +--
 opennlp-models-pos/opennlp-models-pos-nl/pom.xml   | 74 ++++++++++++++++++++++
 .../src/main/resources/model.properties            |  9 +--
 opennlp-models-pos/pom.xml                         | 44 +++++++++++++
 .../src/main/resources/expected-models.txt         | 10 ++-
 pom.xml                                            |  1 +
 13 files changed, 439 insertions(+), 31 deletions(-)

diff --git a/opennlp-models-pos/opennlp-models-pos-de/pom.xml 
b/opennlp-models-pos/opennlp-models-pos-de/pom.xml
new file mode 100644
index 0000000..ccf36ba
--- /dev/null
+++ b/opennlp-models-pos/opennlp-models-pos-de/pom.xml
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+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.
+-->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0";
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.opennlp</groupId>
+        <artifactId>opennlp-models-pos</artifactId>
+        <version>0.1-SNAPSHOT</version>
+    </parent>
+
+    <name>Apache OpenNLP Models :: Part-Of-Speech :: German</name>
+    <artifactId>opennlp-models-pos-de</artifactId>
+
+    <properties>
+        <dist.base>${asf.dist.base}</dist.base>
+        <model.family>ud-models-1.0</model.family>
+        <model.name>opennlp-de-ud-gsd-pos-1.0-1.9.3.bin</model.name>
+        <model.version>1.9.3</model.version>
+        
<model.sha256>1436a6f77d25e943963002945c896d332296e2018f3e9de91013ea8cf4a897e8</model.sha256>
+    </properties>
+
+    <build>
+        <resources>
+            <resource>
+                <directory>src/main/resources</directory>
+                <filtering>true</filtering>
+                <includes>
+                    <include>**/model.properties</include>
+                </includes>
+            </resource>
+            <resource>
+                <directory>src/main/resources</directory>
+                <includes>
+                    <include>**/*.bin</include>
+                </includes>
+            </resource>
+        </resources>
+        <plugins>
+            <plugin>
+                <groupId>com.googlecode.maven-download-plugin</groupId>
+                <artifactId>download-maven-plugin</artifactId>
+                <configuration>
+                    <url>${dist.base}/${model.family}/${model.name}</url>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>
\ No newline at end of file
diff --git a/opennlp-models-test/src/main/resources/expected-models.txt 
b/opennlp-models-pos/opennlp-models-pos-de/src/main/resources/model.properties
similarity index 76%
copy from opennlp-models-test/src/main/resources/expected-models.txt
copy to 
opennlp-models-pos/opennlp-models-pos-de/src/main/resources/model.properties
index 68c678a..4089d05 100644
--- a/opennlp-models-test/src/main/resources/expected-models.txt
+++ 
b/opennlp-models-pos/opennlp-models-pos-de/src/main/resources/model.properties
@@ -13,9 +13,6 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-langdetect-183.bin
-opennlp-de-ud-gsd-sentence-1.0-1.9.3.bin
-opennlp-en-ud-ewt-sentence-1.0-1.9.3.bin
-opennlp-1.0-1.9.3fr-ud-ftb-sentence-1.0-1.9.3.bin
-opennlp-nl-ud-alpino-sentence-1.0-1.9.3.bin
-opennlp-nl-ud-alpino-sentence-1.0-1.9.3.bin
\ No newline at end of file
+model.name=${model.name}
+model.version=${model.version}
+model.sha256=${model.sha256}
\ No newline at end of file
diff --git a/opennlp-models-pos/opennlp-models-pos-en/pom.xml 
b/opennlp-models-pos/opennlp-models-pos-en/pom.xml
new file mode 100644
index 0000000..adaf30c
--- /dev/null
+++ b/opennlp-models-pos/opennlp-models-pos-en/pom.xml
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+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.
+-->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0";
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.opennlp</groupId>
+        <artifactId>opennlp-models-pos</artifactId>
+        <version>0.1-SNAPSHOT</version>
+    </parent>
+
+    <name>Apache OpenNLP Models :: Part-Of-Speech :: English</name>
+    <artifactId>opennlp-models-pos-en</artifactId>
+
+    <properties>
+        <dist.base>${asf.dist.base}</dist.base>
+        <model.family>ud-models-1.0</model.family>
+        <model.name>opennlp-en-ud-ewt-pos-1.0-1.9.3.bin</model.name>
+        <model.version>1.9.3</model.version>
+        
<model.sha256>9bf8a5f634a18c5a34f4cce0b256a070b472521e4e916f019a9433921a3bc5a8</model.sha256>
+    </properties>
+
+    <build>
+        <resources>
+            <resource>
+                <directory>src/main/resources</directory>
+                <filtering>true</filtering>
+                <includes>
+                    <include>**/model.properties</include>
+                </includes>
+            </resource>
+            <resource>
+                <directory>src/main/resources</directory>
+                <includes>
+                    <include>**/*.bin</include>
+                </includes>
+            </resource>
+        </resources>
+        <plugins>
+            <plugin>
+                <groupId>com.googlecode.maven-download-plugin</groupId>
+                <artifactId>download-maven-plugin</artifactId>
+                <configuration>
+                    <url>${dist.base}/${model.family}/${model.name}</url>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>
\ No newline at end of file
diff --git a/opennlp-models-test/src/main/resources/expected-models.txt 
b/opennlp-models-pos/opennlp-models-pos-en/src/main/resources/model.properties
similarity index 76%
copy from opennlp-models-test/src/main/resources/expected-models.txt
copy to 
opennlp-models-pos/opennlp-models-pos-en/src/main/resources/model.properties
index 68c678a..4089d05 100644
--- a/opennlp-models-test/src/main/resources/expected-models.txt
+++ 
b/opennlp-models-pos/opennlp-models-pos-en/src/main/resources/model.properties
@@ -13,9 +13,6 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-langdetect-183.bin
-opennlp-de-ud-gsd-sentence-1.0-1.9.3.bin
-opennlp-en-ud-ewt-sentence-1.0-1.9.3.bin
-opennlp-1.0-1.9.3fr-ud-ftb-sentence-1.0-1.9.3.bin
-opennlp-nl-ud-alpino-sentence-1.0-1.9.3.bin
-opennlp-nl-ud-alpino-sentence-1.0-1.9.3.bin
\ No newline at end of file
+model.name=${model.name}
+model.version=${model.version}
+model.sha256=${model.sha256}
\ No newline at end of file
diff --git a/opennlp-models-pos/opennlp-models-pos-fr/pom.xml 
b/opennlp-models-pos/opennlp-models-pos-fr/pom.xml
new file mode 100644
index 0000000..c271282
--- /dev/null
+++ b/opennlp-models-pos/opennlp-models-pos-fr/pom.xml
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+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.
+-->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0";
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.opennlp</groupId>
+        <artifactId>opennlp-models-pos</artifactId>
+        <version>0.1-SNAPSHOT</version>
+    </parent>
+
+    <name>Apache OpenNLP Models :: Part-Of-Speech :: French</name>
+    <artifactId>opennlp-models-pos-fr</artifactId>
+
+    <properties>
+        <dist.base>${asf.dist.base}</dist.base>
+        <model.family>ud-models-1.0</model.family>
+        <model.name>opennlp-fr-ud-ftb-pos-1.0-1.9.3.bin</model.name>
+        <model.version>1.9.3</model.version>
+        
<model.sha256>d572cb0d7df5f5ca968d97fbb46429605ce8491bca4ad6844bf2827af5e0f3eb</model.sha256>
+    </properties>
+
+    <build>
+        <resources>
+            <resource>
+                <directory>src/main/resources</directory>
+                <filtering>true</filtering>
+                <includes>
+                    <include>**/model.properties</include>
+                </includes>
+            </resource>
+            <resource>
+                <directory>src/main/resources</directory>
+                <includes>
+                    <include>**/*.bin</include>
+                </includes>
+            </resource>
+        </resources>
+        <plugins>
+            <plugin>
+                <groupId>com.googlecode.maven-download-plugin</groupId>
+                <artifactId>download-maven-plugin</artifactId>
+                <configuration>
+                    <url>${dist.base}/${model.family}/${model.name}</url>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>
\ No newline at end of file
diff --git a/opennlp-models-test/src/main/resources/expected-models.txt 
b/opennlp-models-pos/opennlp-models-pos-fr/src/main/resources/model.properties
similarity index 76%
copy from opennlp-models-test/src/main/resources/expected-models.txt
copy to 
opennlp-models-pos/opennlp-models-pos-fr/src/main/resources/model.properties
index 68c678a..4089d05 100644
--- a/opennlp-models-test/src/main/resources/expected-models.txt
+++ 
b/opennlp-models-pos/opennlp-models-pos-fr/src/main/resources/model.properties
@@ -13,9 +13,6 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-langdetect-183.bin
-opennlp-de-ud-gsd-sentence-1.0-1.9.3.bin
-opennlp-en-ud-ewt-sentence-1.0-1.9.3.bin
-opennlp-1.0-1.9.3fr-ud-ftb-sentence-1.0-1.9.3.bin
-opennlp-nl-ud-alpino-sentence-1.0-1.9.3.bin
-opennlp-nl-ud-alpino-sentence-1.0-1.9.3.bin
\ No newline at end of file
+model.name=${model.name}
+model.version=${model.version}
+model.sha256=${model.sha256}
\ No newline at end of file
diff --git a/opennlp-models-pos/opennlp-models-pos-it/pom.xml 
b/opennlp-models-pos/opennlp-models-pos-it/pom.xml
new file mode 100644
index 0000000..1323c66
--- /dev/null
+++ b/opennlp-models-pos/opennlp-models-pos-it/pom.xml
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+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.
+-->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0";
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.opennlp</groupId>
+        <artifactId>opennlp-models-pos</artifactId>
+        <version>0.1-SNAPSHOT</version>
+    </parent>
+
+    <name>Apache OpenNLP Models :: Part-Of-Speech :: Italian</name>
+    <artifactId>opennlp-models-pos-it</artifactId>
+
+    <properties>
+        <dist.base>${asf.dist.base}</dist.base>
+        <model.family>ud-models-1.0</model.family>
+        <model.name>opennlp-it-ud-vit-pos-1.0-1.9.3.bin</model.name>
+        <model.version>1.9.3</model.version>
+        
<model.sha256>babf98f2b11666e4efbca641b47385a2458cbb835d7ca07af599f82bb9db5997</model.sha256>
+    </properties>
+
+    <build>
+        <resources>
+            <resource>
+                <directory>src/main/resources</directory>
+                <filtering>true</filtering>
+                <includes>
+                    <include>**/model.properties</include>
+                </includes>
+            </resource>
+            <resource>
+                <directory>src/main/resources</directory>
+                <includes>
+                    <include>**/*.bin</include>
+                </includes>
+            </resource>
+        </resources>
+        <plugins>
+            <plugin>
+                <groupId>com.googlecode.maven-download-plugin</groupId>
+                <artifactId>download-maven-plugin</artifactId>
+                <configuration>
+                    <url>${dist.base}/${model.family}/${model.name}</url>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>
\ No newline at end of file
diff --git a/opennlp-models-test/src/main/resources/expected-models.txt 
b/opennlp-models-pos/opennlp-models-pos-it/src/main/resources/model.properties
similarity index 76%
copy from opennlp-models-test/src/main/resources/expected-models.txt
copy to 
opennlp-models-pos/opennlp-models-pos-it/src/main/resources/model.properties
index 68c678a..4089d05 100644
--- a/opennlp-models-test/src/main/resources/expected-models.txt
+++ 
b/opennlp-models-pos/opennlp-models-pos-it/src/main/resources/model.properties
@@ -13,9 +13,6 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-langdetect-183.bin
-opennlp-de-ud-gsd-sentence-1.0-1.9.3.bin
-opennlp-en-ud-ewt-sentence-1.0-1.9.3.bin
-opennlp-1.0-1.9.3fr-ud-ftb-sentence-1.0-1.9.3.bin
-opennlp-nl-ud-alpino-sentence-1.0-1.9.3.bin
-opennlp-nl-ud-alpino-sentence-1.0-1.9.3.bin
\ No newline at end of file
+model.name=${model.name}
+model.version=${model.version}
+model.sha256=${model.sha256}
\ No newline at end of file
diff --git a/opennlp-models-pos/opennlp-models-pos-nl/pom.xml 
b/opennlp-models-pos/opennlp-models-pos-nl/pom.xml
new file mode 100644
index 0000000..0b37ee6
--- /dev/null
+++ b/opennlp-models-pos/opennlp-models-pos-nl/pom.xml
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+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.
+-->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0";
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.opennlp</groupId>
+        <artifactId>opennlp-models-pos</artifactId>
+        <version>0.1-SNAPSHOT</version>
+    </parent>
+
+    <name>Apache OpenNLP Models :: Part-Of-Speech :: Dutch</name>
+    <artifactId>opennlp-models-pos-nl</artifactId>
+
+    <properties>
+        <dist.base>${asf.dist.base}</dist.base>
+        <model.family>ud-models-1.0</model.family>
+        <model.name>opennlp-nl-ud-alpino-pos-1.0-1.9.3.bin</model.name>
+        <model.version>1.9.3</model.version>
+        
<model.sha256>8c99733fcba8330921f19d0389dc8e820d64b19b15c74a8958f012ab82133b6e</model.sha256>
+    </properties>
+
+    <build>
+        <resources>
+            <resource>
+                <directory>src/main/resources</directory>
+                <filtering>true</filtering>
+                <includes>
+                    <include>**/model.properties</include>
+                </includes>
+            </resource>
+            <resource>
+                <directory>src/main/resources</directory>
+                <includes>
+                    <include>**/*.bin</include>
+                </includes>
+            </resource>
+        </resources>
+        <plugins>
+            <plugin>
+                <groupId>com.googlecode.maven-download-plugin</groupId>
+                <artifactId>download-maven-plugin</artifactId>
+                <configuration>
+                    <url>${dist.base}/${model.family}/${model.name}</url>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>
\ No newline at end of file
diff --git a/opennlp-models-test/src/main/resources/expected-models.txt 
b/opennlp-models-pos/opennlp-models-pos-nl/src/main/resources/model.properties
similarity index 76%
copy from opennlp-models-test/src/main/resources/expected-models.txt
copy to 
opennlp-models-pos/opennlp-models-pos-nl/src/main/resources/model.properties
index 68c678a..4089d05 100644
--- a/opennlp-models-test/src/main/resources/expected-models.txt
+++ 
b/opennlp-models-pos/opennlp-models-pos-nl/src/main/resources/model.properties
@@ -13,9 +13,6 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-langdetect-183.bin
-opennlp-de-ud-gsd-sentence-1.0-1.9.3.bin
-opennlp-en-ud-ewt-sentence-1.0-1.9.3.bin
-opennlp-1.0-1.9.3fr-ud-ftb-sentence-1.0-1.9.3.bin
-opennlp-nl-ud-alpino-sentence-1.0-1.9.3.bin
-opennlp-nl-ud-alpino-sentence-1.0-1.9.3.bin
\ No newline at end of file
+model.name=${model.name}
+model.version=${model.version}
+model.sha256=${model.sha256}
\ No newline at end of file
diff --git a/opennlp-models-pos/pom.xml b/opennlp-models-pos/pom.xml
new file mode 100644
index 0000000..b807ca5
--- /dev/null
+++ b/opennlp-models-pos/pom.xml
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+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.
+-->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0";
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.opennlp</groupId>
+        <artifactId>opennlp-models</artifactId>
+        <version>0.1-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>opennlp-models-pos</artifactId>
+    <name>Apache OpenNLP Models :: Part-Of-Speech</name>
+    <packaging>pom</packaging>
+
+    <modules>
+        <module>opennlp-models-pos-de</module>
+        <module>opennlp-models-pos-en</module>
+        <module>opennlp-models-pos-fr</module>
+        <module>opennlp-models-pos-it</module>
+        <module>opennlp-models-pos-nl</module>
+    </modules>
+
+</project>
\ No newline at end of file
diff --git a/opennlp-models-test/src/main/resources/expected-models.txt 
b/opennlp-models-test/src/main/resources/expected-models.txt
index 68c678a..2e77db4 100644
--- a/opennlp-models-test/src/main/resources/expected-models.txt
+++ b/opennlp-models-test/src/main/resources/expected-models.txt
@@ -13,9 +13,17 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+# Language Detection
 langdetect-183.bin
+# Sentence Detection
 opennlp-de-ud-gsd-sentence-1.0-1.9.3.bin
 opennlp-en-ud-ewt-sentence-1.0-1.9.3.bin
 opennlp-1.0-1.9.3fr-ud-ftb-sentence-1.0-1.9.3.bin
 opennlp-nl-ud-alpino-sentence-1.0-1.9.3.bin
-opennlp-nl-ud-alpino-sentence-1.0-1.9.3.bin
\ No newline at end of file
+opennlp-nl-ud-alpino-sentence-1.0-1.9.3.bin
+# POS
+opennlp-de-ud-gsd-pos-1.0-1.9.3.bin
+opennlp-de-ud-gsd-pos-1.0-1.9.3.bin
+opennlp-fr-ud-ftb-pos-1.0-1.9.3.bin
+opennlp-it-ud-vit-pos-1.0-1.9.3.bin
+opennlp-nl-ud-alpino-pos-1.0-1.9.3.bin
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index a5221d8..7119ea5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -253,6 +253,7 @@
        <modules>
                <module>opennlp-models-langdetect</module>
                <module>opennlp-models-sentdetect</module>
+               <module>opennlp-models-pos</module>
                <module>opennlp-models-test</module>
        </modules>
 

Reply via email to