blob: 896ba8315e90f956f306145e816977f1e88f4a1d [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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.camel</groupId>
<artifactId>core</artifactId>
<version>3.7.0</version>
<relativePath>..</relativePath>
</parent>
<artifactId>camel-core-engine</artifactId>
<packaging>jar</packaging>
<name>Camel :: Core Engine</name>
<description>Just the Camel Core engine without any core components</description>
<properties>
<firstVersion>3.0.0</firstVersion>
<label>core</label>
<camel.osgi.dynamic>
org.apache.camel.spring.util;${camel.osgi.import.strict.version},
org.apache.camel.spring.pollingconsumer;${camel.osgi.import.strict.version},
org.apache.camel.processor.interceptor.jpa;${camel.osgi.import.strict.version},
org.apache.camel.pollconsumer.quartz;${camel.osgi.import.strict.version},
org.apache.camel.component.caffeine;${camel.osgi.import.strict.version},
net.sf.saxon
</camel.osgi.dynamic>
<camel.osgi.import>
javax.xml.bind*;version="[2.2,3.0)",
*
</camel.osgi.import>
</properties>
<dependencies>
<!-- JAXB annotations are used for the EIP models -->
<!-- but they are only used at runtime when using camel-xml-jaxb -->
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>${jakarta-jaxb-version}</version>
<optional>true</optional>
</dependency>
<!-- required dependencies by camel-core -->
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-base-engine</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core-reifier</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-management-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-support</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-util</artifactId>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<!-- Eclipse m2e Lifecycle Management -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>${lifecycle-mapping-version}</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.camel</groupId>
<artifactId>camel-package-maven-plugin</artifactId>
<versionRange>${project.version}</versionRange>
<goals>
<goal>generate-eips-list</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.camel</groupId>
<artifactId>camel-package-maven-plugin</artifactId>
<executions>
<execution>
<id>generate-configurer</id>
<phase>process-classes</phase>
<goals>
<goal>generate-configurer</goal>
</goals>
<configuration>
<discoverClasses>false</discoverClasses>
<classes>
<!-- we want to have configurer for ExtendedCamelContext in camel-core-engine -->
<class>org.apache.camel.ExtendedCamelContext=org.apache.camel.impl.ExtendedCamelContext</class>
<!-- we want to have configurer for RestConfiguration in camel-core-engine -->
<class>org.apache.camel.spi.RestConfiguration=org.apache.camel.impl.RestConfiguration</class>
</classes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.camel</groupId>
<artifactId>camel-bundle-plugin</artifactId>
<configuration>
<instructions>
<_plugin>
org.apache.felix.bundleplugin.BlueprintPlugin,
aQute.lib.spring.SpringXMLType,
org.apache.felix.bundleplugin.JpaPlugin,
org.apache.camel.maven.bundle.CamelPlugin
</_plugin>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<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>
<isOffline>${camel.javadoc.offline}</isOffline>
<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>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>
<isOffline>${camel.javadoc.offline}</isOffline>
<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>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>
<!-- skip management tests on AIX as it hangs CI servers -->
<profile>
<id>aix</id>
<activation>
<os>
<name>aix</name>
</os>
</activation>
<properties>
<platform.skip.tests>org/apache/camel/management/**/*.java</platform.skip.tests>
</properties>
</profile>
<profile>
<id>xalan</id>
<dependencies>
<!-- enable the Xalan processor -->
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>${xalan-version}</version>
</dependency>
</dependencies>
</profile>
<profile>
<id>xerces</id>
<dependencies>
<!-- enable the xerces processor -->
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>${xerces-version}</version>
</dependency>
</dependencies>
</profile>
<profile>
<id>woodstox</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencies>
<!-- xmltokenizer using woodstox -->
<dependency>
<groupId>org.codehaus.woodstox</groupId>
<artifactId>woodstox-core-asl</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>jdk9+-build</id>
<activation>
<jdk>[9,)</jdk>
</activation>
<dependencies>
<!-- xmltokenizer using woodstox -->
<dependency>
<groupId>org.codehaus.woodstox</groupId>
<artifactId>woodstox-core-asl</artifactId>
<scope>test</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>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>