blob: 9024094a1c2004f3b650ca4fe5f383c788728704 [file] [log] [blame]
Martin Wiesner03aa30c2023-01-28 18:56:30 +01001<?xml version="1.0" encoding="UTF-8"?>
Jörn Kottmannaf92a7d2014-03-10 12:28:25 +00002<!--
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 Wiesner03aa30c2023-01-28 18:56:30 +010023 <parent>
Martin Wiesnerb4ac48e2023-02-02 15:39:57 +010024 <groupId>org.apache.opennlp</groupId>
25 <artifactId>opennlp-sandbox</artifactId>
Martin Wiesner1e1357e2023-05-04 21:34:01 +020026 <version>2.2.1-SNAPSHOT</version>
Martin Wiesner03aa30c2023-01-28 18:56:30 +010027 </parent>
28
Jörn Kottmannaf92a7d2014-03-10 12:28:25 +000029 <artifactId>nlp-utils</artifactId>
Martin Wiesner1e1357e2023-05-04 21:34:01 +020030 <version>2.2.1-SNAPSHOT</version>
Martin Wiesner03aa30c2023-01-28 18:56:30 +010031 <name>Apache OpenNLP Utils</name>
Jörn Kottmannaf92a7d2014-03-10 12:28:25 +000032
Jörn Kottmannaf92a7d2014-03-10 12:28:25 +000033 <dependencies>
34 <dependency>
Richard Zowalla67025352023-02-09 11:29:49 +010035 <groupId>org.junit.jupiter</groupId>
36 <artifactId>junit-jupiter-api</artifactId>
Richard Zowalla67025352023-02-09 11:29:49 +010037 </dependency>
38
39 <dependency>
40 <groupId>org.junit.jupiter</groupId>
41 <artifactId>junit-jupiter-engine</artifactId>
Richard Zowalla67025352023-02-09 11:29:49 +010042 </dependency>
43
44 <dependency>
45 <groupId>org.junit.jupiter</groupId>
46 <artifactId>junit-jupiter-params</artifactId>
Jörn Kottmannaf92a7d2014-03-10 12:28:25 +000047 </dependency>
48 </dependencies>
Martin Wiesner03aa30c2023-01-28 18:56:30 +010049
Jörn Kottmannaf92a7d2014-03-10 12:28:25 +000050 <build>
51 <plugins>
52 <plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-compiler-plugin</artifactId>
Jörn Kottmannaf92a7d2014-03-10 12:28:25 +000055 <configuration>
Martin Wiesner03aa30c2023-01-28 18:56:30 +010056 <source>${maven.compiler.source}</source>
57 <target>${maven.compiler.target}</target>
58 <compilerArgument>-Xlint</compilerArgument>
Jörn Kottmannaf92a7d2014-03-10 12:28:25 +000059 </configuration>
60 </plugin>
61 </plugins>
62 </build>
63</project>