| <?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>4.7.0</version> |
| </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> |
| <platform.skip.tests>false</platform.skip.tests> |
| </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-xml-bind-api-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> |
| <class>org.apache.camel.CamelContext=org.apache.camel.impl.CamelContext</class> |
| <class>org.apache.camel.impl.DefaultDumpRoutesStrategy</class> |
| </classes> |
| </configuration> |
| </execution> |
| </executions> |
| </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> |
| |
| <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> |
| <version>${woodstox-version}</version> |
| <scope>test</scope> |
| <exclusions> |
| <exclusion> |
| <groupId>javax.xml.stream</groupId> |
| <artifactId>stax-api</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| </dependencies> |
| </profile> |
| </profiles> |
| |
| </project> |