forked from korpling/ANNIS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
175 lines (154 loc) · 5.59 KB
/
pom.xml
File metadata and controls
175 lines (154 loc) · 5.59 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.hu-berlin.german.korpling.annis</groupId>
<artifactId>annis-all</artifactId>
<packaging>pom</packaging>
<name>ANNIS corpus search</name>
<version>3.3.0-SNAPSHOT</version>
<description>
ANNIS is an open source, versatile web browser-based search and
visualization architecture for complex multilevel linguistic corpora with
diverse types of annotation. ANNIS, which stands for ANNotation of Information
Structure, has been designed to provide access to the data of the
SFB 632 - "Information Structure: The Linguistic Means for Structuring
Utterances, Sentences and Texts". Since information structure interacts with
linguistic phenomena on many levels, ANNIS addresses the SFB's need to
concurrently annotate, query and visualize data from such varied areas as
syntax, semantics, morphology, prosody, referentiality, lexis and more.
For projects working with spoken language, support for audio / video
annotations is also required.
</description>
<url>http://annis-tools.org/</url>
<scm>
<developerConnection>scm:git:ssh://git@github.com/korpling/ANNIS.git</developerConnection>
</scm>
<organization>
<name>SFB 632</name>
<url>http://www.sfb632.uni-potsdam.de/</url>
</organization>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<distributionManagement>
<site>
<id>github</id>
<url>https://github.com/korpling/ANNIS</url>
</site>
<repository>
<id>korpling</id>
<name>korpling maven repo</name>
<url>scpexe://korpling.german.hu-berlin.de/srv/www/maven2/</url>
</repository>
</distributionManagement>
<repositories>
<repository>
<id>korpling</id>
<url>http://korpling.german.hu-berlin.de/maven2/</url>
</repository>
</repositories>
<properties>
<servlet.version>2.5</servlet.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.7</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.1</version>
<configuration>
<reportPlugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.4</version>
<configuration>
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
</configuration>
<reports>
<report>index</report>
<report>summary</report>
<report>license</report>
</reports>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<excludeFilterFile>${basedir}/src/findbugs/excludeFilter.xml</excludeFilterFile>
</configuration>
</plugin>
</reportPlugins>
</configuration>
</plugin>
<!-- update this with
mvn license:add-third-party license:download-licenses
-->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>1.4</version>
<configuration>
<useMissingFile>true</useMissingFile>
<missingFile>${basedir}/src/license/THIRD-PARTY.properties</missingFile>
<licensesConfigFile>${basedir}/src/licenses.xml</licensesConfigFile>
<outputDirectory>${basedir}/THIRD-PARTY</outputDirectory>
<thirdPartyFilename>${project.name}_dependencies.txt</thirdPartyFilename>
<licensesOutputDirectory>${basedir}/THIRD-PARTY/licenses</licensesOutputDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>create</goal>
</goals>
</execution>
</executions>
<configuration>
<doCheck>false</doCheck>
<doUpdate>false</doUpdate>
</configuration>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>1.0</version>
</extension>
</extensions>
</build>
<modules>
<module>annis-interfaces</module>
<module>annis-service</module>
<module>annis-kickstarter</module>
<module>annis-gui</module>
<module>annis-widgets</module>
<module>annis-visualizers</module>
<module>annis-libgui</module>
</modules>
</project>