blob: d590cc04952260758a15ba7ae0f88210681f8cc4 [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: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>
<parent>
<groupId>org.apache.camel</groupId>
<artifactId>core</artifactId>
<version>3.0.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<artifactId>camel-util</artifactId>
<packaging>jar</packaging>
<name>Camel :: Util</name>
<description>The Camel Utilities</description>
<dependencies>
<!-- required dependencies by camel-util -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!-- testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>java-hamcrest</artifactId>
<version>${hamcrest-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj-version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<links>
<link>http://download.oracle.com/javase/7/docs/api/</link>
<link>http://download.oracle.com/javaee/7/api/</link>
</links>
<linksource>true</linksource>
<maxmemory>256m</maxmemory>
<groups>
<group>
<title>Camel API</title>
<packages>org.apache.camel</packages>
</group>
<group>
<title>Fluent API (DSL) for building EIP rules</title>
<packages>org.apache.camel.builder:org.apache.camel.builder.*</packages>
</group>
<group>
<title>EIP model</title>
<packages>org.apache.camel.model:org.apache.camel.model.*</packages>
</group>
<group>
<title>Camel Components</title>
<packages>org.apache.camel.component:org.apache.camel.component.*</packages>
</group>
<group>
<title>Language APIs and plugins for Expressions and Predicates</title>
<packages>org.apache.camel.language:org.apache.camel.language.*</packages>
</group>
<group>
<title>Processors to implement the Enterprise Integration Patterns</title>
<packages>org.apache.camel.processor:org.apache.camel.processor.*</packages>
</group>
<group>
<title>Strategy APIs for implementors extending Camel</title>
<packages>org.apache.camel.spi</packages>
</group>
<group>
<title>Support APIs for implementors</title>
<packages>org.apache.camel.support:org.apache.camel.support.*</packages>
</group>
<group>
<title>Management (JMX) API</title>
<packages>
org.apache.camel.management:org.apache.camel.management.*:org.apache.camel.api.management.mbean
</packages>
</group>
<group>
<title>Camel Runtime</title>
<packages>org.apache.camel.impl:org.apache.camel.impl.*</packages>
</group>
<group>
<title>Camel Main to run Camel standalone</title>
<packages>org.apache.camel.main</packages>
</group>
<group>
<title>Type conversion helper classes</title>
<packages>org.apache.camel.converter:org.apache.camel.converter.*</packages>
</group>
<group>
<title>Utility classes</title>
<packages>org.apache.camel.util:org.apache.camel.util.*</packages>
</group>
</groups>
</configuration>
</plugin>
</plugins>
</reporting>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>package</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<links>
<link>http://download.oracle.com/javase/7/docs/api/</link>
<link>http://download.oracle.com/javaee/7/api/</link>
</links>
<linksource>true</linksource>
<maxmemory>256m</maxmemory>
<groups>
<group>
<title>Camel API</title>
<packages>org.apache.camel</packages>
</group>
<group>
<title>Fluent API (DSL) for building EIP rules</title>
<packages>org.apache.camel.builder:org.apache.camel.builder.*</packages>
</group>
<group>
<title>EIP model</title>
<packages>org.apache.camel.model:org.apache.camel.model.*</packages>
</group>
<group>
<title>Camel Components</title>
<packages>org.apache.camel.component:org.apache.camel.component.*</packages>
</group>
<group>
<title>Language APIs and plugins for Expressions and Predicates</title>
<packages>org.apache.camel.language:org.apache.camel.language.*</packages>
</group>
<group>
<title>Processors to implement the Enterprise Integration Patterns</title>
<packages>org.apache.camel.processor:org.apache.camel.processor.*</packages>
</group>
<group>
<title>Strategy APIs for implementors extending Camel</title>
<packages>org.apache.camel.spi</packages>
</group>
<group>
<title>Support APIs for implementors</title>
<packages>org.apache.camel.support:org.apache.camel.support.*</packages>
</group>
<group>
<title>Management (JMX) API</title>
<packages>
org.apache.camel.management:org.apache.camel.management.*:org.apache.camel.api.management.mbean
</packages>
</group>
<group>
<title>Camel Runtime</title>
<packages>org.apache.camel.impl:org.apache.camel.impl.*</packages>
</group>
<group>
<title>Camel Main to run Camel standalone</title>
<packages>org.apache.camel.main</packages>
</group>
<group>
<title>Type conversion helper classes</title>
<packages>org.apache.camel.converter:org.apache.camel.converter.*</packages>
</group>
<group>
<title>Utility classes</title>
<packages>org.apache.camel.util:org.apache.camel.util.*</packages>
</group>
</groups>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>jdk9+-build</id>
<activation>
<jdk>[9,)</jdk>
</activation>
<dependencies>
<!-- enable the APT processor -->
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>apt</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<!-- skip file stress tests as they are intended to run manually -->
<excludes>
<exclude>org/apache/camel/component/file/stress/**.java</exclude>
<exclude>**/DistributedCompletionIntervalTest.java</exclude>
<exclude>**/DistributedConcurrentPerCorrelationKeyTest.java</exclude>
<exclude>${platform.skip.tests}</exclude>
</excludes>
<forkedProcessTimeoutInSeconds>3000</forkedProcessTimeoutInSeconds>
<!-- needed for testing the properties component -->
<environmentVariables>
<FOO_SERVICE_HOST>myserver</FOO_SERVICE_HOST>
<FOO_SERVICE_PORT>8081</FOO_SERVICE_PORT>
</environmentVariables>
</configuration>
<dependencies>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>${jakarta-jaxb-version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>${glassfish-jaxb-runtime-version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>