Martin Wiesner | 03aa30c | 2023-01-28 18:56:30 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Jörn Kottmann | af92a7d | 2014-03-10 12:28:25 +0000 | [diff] [blame] | 2 | <!-- |
| 3 | Licensed to the Apache Software Foundation (ASF) under one |
| 4 | or more contributor license agreements. See the NOTICE file |
| 5 | distributed with this work for additional information |
| 6 | regarding copyright ownership. The ASF licenses this file |
| 7 | to you under the Apache License, Version 2.0 (the |
| 8 | "License"); you may not use this file except in compliance |
| 9 | with the License. You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, |
| 14 | software distributed under the License is distributed on an |
| 15 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | KIND, either express or implied. See the License for the |
| 17 | specific language governing permissions and limitations |
| 18 | under the License. |
| 19 | --> |
| 20 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 21 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 22 | <modelVersion>4.0.0</modelVersion> |
Martin Wiesner | 03aa30c | 2023-01-28 18:56:30 +0100 | [diff] [blame] | 23 | <parent> |
Martin Wiesner | b4ac48e | 2023-02-02 15:39:57 +0100 | [diff] [blame] | 24 | <groupId>org.apache.opennlp</groupId> |
| 25 | <artifactId>opennlp-sandbox</artifactId> |
Martin Wiesner | 1e1357e | 2023-05-04 21:34:01 +0200 | [diff] [blame] | 26 | <version>2.2.1-SNAPSHOT</version> |
Martin Wiesner | 03aa30c | 2023-01-28 18:56:30 +0100 | [diff] [blame] | 27 | </parent> |
| 28 | |
Jörn Kottmann | af92a7d | 2014-03-10 12:28:25 +0000 | [diff] [blame] | 29 | <artifactId>nlp-utils</artifactId> |
Martin Wiesner | 1e1357e | 2023-05-04 21:34:01 +0200 | [diff] [blame] | 30 | <version>2.2.1-SNAPSHOT</version> |
Martin Wiesner | 03aa30c | 2023-01-28 18:56:30 +0100 | [diff] [blame] | 31 | <name>Apache OpenNLP Utils</name> |
Jörn Kottmann | af92a7d | 2014-03-10 12:28:25 +0000 | [diff] [blame] | 32 | |
Jörn Kottmann | af92a7d | 2014-03-10 12:28:25 +0000 | [diff] [blame] | 33 | <dependencies> |
| 34 | <dependency> |
Richard Zowalla | 6702535 | 2023-02-09 11:29:49 +0100 | [diff] [blame] | 35 | <groupId>org.junit.jupiter</groupId> |
| 36 | <artifactId>junit-jupiter-api</artifactId> |
Richard Zowalla | 6702535 | 2023-02-09 11:29:49 +0100 | [diff] [blame] | 37 | </dependency> |
| 38 | |
| 39 | <dependency> |
| 40 | <groupId>org.junit.jupiter</groupId> |
| 41 | <artifactId>junit-jupiter-engine</artifactId> |
Richard Zowalla | 6702535 | 2023-02-09 11:29:49 +0100 | [diff] [blame] | 42 | </dependency> |
| 43 | |
| 44 | <dependency> |
| 45 | <groupId>org.junit.jupiter</groupId> |
| 46 | <artifactId>junit-jupiter-params</artifactId> |
Jörn Kottmann | af92a7d | 2014-03-10 12:28:25 +0000 | [diff] [blame] | 47 | </dependency> |
| 48 | </dependencies> |
Martin Wiesner | 03aa30c | 2023-01-28 18:56:30 +0100 | [diff] [blame] | 49 | |
Jörn Kottmann | af92a7d | 2014-03-10 12:28:25 +0000 | [diff] [blame] | 50 | <build> |
| 51 | <plugins> |
| 52 | <plugin> |
| 53 | <groupId>org.apache.maven.plugins</groupId> |
| 54 | <artifactId>maven-compiler-plugin</artifactId> |
Jörn Kottmann | af92a7d | 2014-03-10 12:28:25 +0000 | [diff] [blame] | 55 | <configuration> |
Martin Wiesner | 03aa30c | 2023-01-28 18:56:30 +0100 | [diff] [blame] | 56 | <source>${maven.compiler.source}</source> |
| 57 | <target>${maven.compiler.target}</target> |
| 58 | <compilerArgument>-Xlint</compilerArgument> |
Jörn Kottmann | af92a7d | 2014-03-10 12:28:25 +0000 | [diff] [blame] | 59 | </configuration> |
| 60 | </plugin> |
| 61 | </plugins> |
| 62 | </build> |
| 63 | </project> |