This repository was archived by the owner on Jan 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathpom.xml
204 lines (175 loc) · 7.31 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
197
198
199
200
201
202
203
204
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.stanbol</groupId>
<artifactId>stanbol-parent</artifactId>
<version>7-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
<groupId>org.apache.stanbol</groupId>
<artifactId>apache-stanbol-commons</artifactId>
<version>1.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Apache Stanbol Commons</name>
<description>
Pseudo project to build the complete Apache Stanbol Commons bundles
</description>
<inceptionYear>2010</inceptionYear>
<licenses>
<license>
<name>Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<scm>
<connection>
scm:svn:http://svn.apache.org/repos/asf/stanbol/trunk/commons
</connection>
<developerConnection>
scm:svn:https://svn.apache.org/repos/asf/stanbol/trunk/commons
</developerConnection>
<url>http://stanbol.apache.org/</url>
</scm>
<modules>
<!-- Basic OSGi bundles -->
<module>frameworkfragment</module>
<!-- Stanbol Web Framework (JAX-RS & Web UI)-->
<module>web/base</module>
<module>web/base.jersey</module>
<module>web/home</module>
<module>web/resources</module>
<module>web/sparql</module>
<module>freemarker</module>
<module>ldpathtemplate</module>
<module>web/viewable</module>
<module>web/rdfviewable-writer</module>
<module>web/viewable-writer</module>
<module>httpqueryheaders</module> <!-- allows CORS with MS Internet Explorer -->
<module>cors</module>
<!-- DataFile Provider -->
<module>stanboltools/datafileprovider</module>
<module>stanboltools/bundledatafileprovider</module>
<module>stanboltools/offline</module> <!-- offline tool support-->
<module>installer/bundleprovider</module> <!-- Sling installer plugin -->
<!-- Namespace Prefix Service STANBOL-824 -->
<module>namespaceprefix/service</module>
<!-- module>namespaceprefix/bundleprovider</module -->
<!-- module>namespaceprefix/datafileprovider</module -->
<module>namespaceprefix/stanbolprovider</module>
<module>namespaceprefix/prefixccprovider</module>
<!-- Apache Solr integration-->
<module>solr/core</module>
<module>solr/managed</module>
<module>solr/web</module>
<module>solr/install</module>
<module>solr/defaults</module>
<module>solr/extras/smartcn</module> <!-- support for the smartcn (Chinese) analyzer -->
<module>solr/extras/kuromoji</module> <!-- support for Japanese -->
<module>solr/extras/icu</module> <!-- support for ICU -->
<module>solr/extras/stempel</module> <!-- support for the Polish stemmer -->
<!-- Marmotta Kiwi Repository -->
<module>marmotta/kiwi</module> <!-- KiWi Triple Store -->
<!-- Apache Tika Bundle-->
<module>tikabundle</module>
<module>jobs</module> <!-- Stanbol Background Jobs Framework -->
<!-- OpenNLP extensions -->
<module>opennlp</module> <!-- Allows to load OpenNLP modles via DataFile provider -->
<module>ixa-pipe-nerc</module> <!-- extensions for OpenNLP (STANBOL-1422)-->
<module>owl</module>
<!-- Apache Clerezza utils and extensions-->
<module>indexedgraph</module>
<!-- JSON-LD serializer/parser provider for Clerezza
(should move to https://github.com/jsonld-java/jsonld-java/tree/master/integration/clerezza)
-->
<module>jsonld</module>
<module>ldpath/clerezza</module>
<module>launchpad</module>
<!-- Stanbol Security -->
<module>security/core</module>
<module>security/authentication.basic</module>
<module>security/felixwebconsole</module>
<module>security/usermanagement</module>
<module>caslight</module>
<!-- Stanbol IntegrationTest utils -->
<module>testing/jarexec</module>
<module>testing/http</module>
<module>testing/stanbol</module>
</modules>
<profiles>
<profile>
<id>apache-release</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
<excludeSubProjects>false</excludeSubProjects>
<excludes>
<!--
All license headers are also checked per
artifact. These excludes are necessary
to make the reactor build suceed. Consider
the excluded files here as already checked
in the artifacts.
-->
<!-- exclude hidden files -->
<exclude>**/.*</exclude>
<exclude>**/.*/*</exclude>
<exclude>**/.*/**/*</exclude>
<!-- exclude build files -->
<exclude>**/target/**</exclude>
<exclude>**/*.log</exclude>
<!-- exclude generated files listing the licenses of deps -->
<exclude>DEPENDENCIES</exclude>
<exclude>DEPENDENCIES-BY-LICENSE</exclude>
<exclude>RAT-REPORT</exclude>
<exclude>**/src/license/THIRD-PARTY.properties</exclude>
<exclude>**/META-INF/services/*</exclude>
<exclude>**/META-INF/resources/**/*.js</exclude>
<!-- exclude certain types by extension -->
<exclude>**/*.properties</exclude>
<exclude>**/*.config</exclude>
<exclude>**/*.nt</exclude>
<exclude>**/*.txt</exclude>
<!-- exclude test files -->
<exclude>**/test/**/*.mappings</exclude>
</excludes>
</configuration>
</plugin>
<!-- plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>aggregate-add-third-party</goal>
</goals>
</execution>
</executions>
</plugin -->
</plugins>
</build>
</profile>
</profiles>
</project>