blob: 43b07d35107737917282d60a94ca60d43200e63c [file] [log] [blame]
<?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>3</version>
<relativePath>../parent</relativePath>
</parent>
<groupId>org.apache.stanbol</groupId>
<artifactId>apache-stanbol-enhancer</artifactId>
<version>0.10.0</version>
<packaging>pom</packaging>
<name>Apache Stanbol Enhancer</name>
<description>
Pseudo project to build the complete Stanbol Enhancer component
</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/tags/apache-stanbol-enhancer-0.10.0
</connection>
<developerConnection>
scm:svn:https://svn.apache.org/repos/asf/stanbol/tags/apache-stanbol-enhancer-0.10.0
</developerConnection>
<url>scm:svn:https://svn.apache.org/repos/asf/stanbol/tags/apache-stanbol-enhancer-0.10.0</url>
</scm>
<modules>
<module>parent</module>
<module>generic/servicesapi</module>
<module>generic/core</module>
<module>generic/test</module>
<module>generic/rdfentities</module>
<module>generic/nlp</module>
<module>generic/nlp-json</module>
<module>jobmanager</module>
<module>chain/allactive</module>
<module>chain/graph</module>
<module>chain/weighted</module>
<module>chain/list</module>
<module>jersey</module>
<module>ldpath</module>
<module>benchmark</module>
<module>defaults</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 certain file types -->
<exclude>**/*.config</exclude>
<exclude>**/*.cfg</exclude>
<exclude>**/*.ref</exclude>
<exclude>**/*.txt</exclude>
<exclude>**/*.tsv</exclude>
<exclude>**/*.sem</exclude>
<exclude>**/*.svg</exclude>
<exclude>**/*.css</exclude>
<!-- exclude test files -->
<exclude>**/test/**/*.eml</exclude>
<exclude>**/test/**/*.nt</exclude>
<exclude>**/test/**/*.html</exclude>
<exclude>**/test/**/*.xhtml</exclude>
<exclude>**/test/**/*.rdf</exclude>
<exclude>**/test/**/*.rtf</exclude>
<exclude>**/test/**/*.rules</exclude>
<exclude>**/test/**/*.odt</exclude>
<!-- example data under AL -->
<exclude>data/text-examples/*.txt</exclude>
<!-- Service configs -->
<exclude>**/src/main/resources/META-INF/services/**</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>