-
Notifications
You must be signed in to change notification settings - Fork 17
/
pom.xml
196 lines (191 loc) · 6.46 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<!--
Copyright 2016
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:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>
<artifactId>dkpro-core-examples</artifactId>
<version>1.10.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<dkpro.core.version>1.10.0</dkpro.core.version>
<uima.version>2.10.3</uima.version>
<uimafit.version>2.4.0</uimafit.version>
<!--
We want to be able to do releases using the release plugin, but the example projects are not
meant to be deployed to a repo. So we skip deployment in general for the example projects.
-->
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
<modules>
<module>dl4j-asl</module>
<module>lda-asl</module>
<module>tokenizedwriter-asl</module>
<module>nameannotation-asl</module>
<module>phrasedetector-asl</module>
<module>stanfordcorecomponents-gpl</module>
<module>wordembeddings-asl</module>
</modules>
<parent>
<groupId>org.dkpro</groupId>
<artifactId>dkpro-parent-pom</artifactId>
<version>20</version>
</parent>
<name>DKPro-Core Examples</name>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/dkpro/dkpro-core-examples/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git://github.com/dkpro/dkpro-core-examples</connection>
<developerConnection>scm:git:[email protected]:dkpro/dkpro-core-examples.git</developerConnection>
<url>https://github.com/dkpro/dkpro-core-examples</url>
</scm>
<repositories>
<!-- For models -->
<repository>
<id>ukp-oss-model-releases</id>
<url>http://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local
</url>
</repository>
<!-- For DKPro Core SNAPSHOTs -->
<repository>
<id>ukp-oss-snapshots</id>
<url>http://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
<artifactId>de.tudarmstadt.ukp.dkpro.core-asl</artifactId>
<version>${dkpro.core.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
<artifactId>de.tudarmstadt.ukp.dkpro.core-gpl</artifactId>
<version>${dkpro.core.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimaj-core</artifactId>
<version>${uima.version}</version>
</dependency>
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimaj-document-annotation</artifactId>
<version>${uima.version}</version>
</dependency>
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimafit-core</artifactId>
<version>${uimafit.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.5</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimaj-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimafit-core</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<!--generate types dynamically -->
<groupId>org.apache.uima</groupId>
<artifactId>jcasgen-maven-plugin</artifactId>
<version>${uima.version}</version>
<configuration>
<limitToProject>true</limitToProject>
<typeSystemIncludes>
<include>src/main/resources/desc/type/**/*.xml</include>
</typeSystemIncludes>
<typeSystemExcludes>
<exclude>src/main/resources/desc/type/**/*_customized.xml</exclude>
</typeSystemExcludes>
</configuration>
<executions>
<execution>
<!--call it in the generate-source phase -->
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>addToSourceFolder</id>
<goals>
<!--add the generated sources -->
<goal>add-source</goal>
</goals>
<phase>process-sources</phase>
<configuration>
<sources>
<!--default path to generated sources -->
<source>${project.build.directory}/generated-sources/jcasgen</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<filtering>false</filtering>
<directory>src/main/resources</directory>
<excludes>
<exclude>desc/type/**/*</exclude>
</excludes>
</resource>
<resource>
<filtering>true</filtering>
<directory>src/main/resources</directory>
<includes>
<include>desc/type/**/*</include>
</includes>
</resource>
</resources>
</build>
</project>