-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpom.xml
133 lines (119 loc) · 4.9 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!--
Copyright 2010
Ubiquitous Knowledge Processing (UKP) Lab
Technische Universität Darmstadt
Licensed 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.dkpro</groupId>
<artifactId>dkpro-parent-pom</artifactId>
<version>32</version>
</parent>
<groupId>org.dkpro.core</groupId>
<artifactId>dkpro-core</artifactId>
<version>2.5.0</version>
<packaging>pom</packaging>
<name>DKPro Core</name>
<!-- The description tag must be present for antrun to work!! -->
<description>DKPro Core is a collection of software components for natural language processing (NLP) based on the Apache UIMA framework.</description>
<url>https://dkpro.github.io/dkpro-core/</url>
<inceptionYear>2007</inceptionYear>
<organization>
<name>Ubiquitous Knowledge Processing (UKP) Lab, Technische Universität Darmstadt</name>
<url>https://www.ukp.tu-darmstadt.de/</url>
</organization>
<repositories>
<repository>
<id>ukp-oss-model-releases</id>
<url>https://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<mailingLists>
<mailingList>
<name>DKPro Core user mailing list</name>
<archive>https://groups.google.com/forum/#!forum/dkpro-core-user</archive>
<post>[email protected]</post>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
</mailingList>
<mailingList>
<name>DKPro Core developer mailing list</name>
<archive>https://groups.google.com/forum/#!forum/dkpro-core-developers</archive>
<post>[email protected]</post>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
</mailingList>
</mailingLists>
<ciManagement>
<system>Jenkins</system>
<url>https://zoidberg.ukp.informatik.tu-darmstadt.de/jenkins/</url>
</ciManagement>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/dkpro/dkpro-core/issues</url>
</issueManagement>
<scm>
<connection>scm:git:https://github.com/dkpro/dkpro-core.git</connection>
<developerConnection>scm:git:https://github.com/dkpro/dkpro-core.git</developerConnection>
<url>https://github.com/dkpro/dkpro-core</url>
<tag>dkpro-core-2.5.0</tag>
</scm>
<properties>
<build-ant-version>1.10.14</build-ant-version>
<build-groovy-version>4.0.22</build-groovy-version>
<build-asciidoctorj-pdf-version>2.3.17</build-asciidoctorj-pdf-version>
</properties>
<modules>
<module>dkpro-core-parent-common</module>
<module>dkpro-core-build</module>
<module>dkpro-core-bom-asl</module>
<module>dkpro-core-bom-gpl</module>
<module>dkpro-core-asl</module>
<module>dkpro-core-gpl</module>
<!-- Documentation and examples modules -->
<module>dkpro-core-doc</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<arguments>${arguments} -Dmaven.surefire.heap=${maven.surefire.heap} -Pdkpro-release</arguments>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.16.2</version>
<configuration>
<rulesUri>file:${session.executionRootDirectory}/dkpro-core-build/src/main/resources/dkpro-core/version-rules.xml</rulesUri>
</configuration>
<dependencies>
<dependency>
<groupId>org.dkpro.core</groupId>
<artifactId>dkpro-core-build</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>