| <?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>camel-parent</artifactId> |
| <version>4.7.0</version> |
| <relativePath>../parent/pom.xml</relativePath> |
| </parent> |
| |
| <artifactId>core</artifactId> |
| <packaging>pom</packaging> |
| |
| <name>Camel :: Core Modules</name> |
| <description>Camel Core Modules</description> |
| |
| <modules> |
| <module>camel-util</module> |
| <module>camel-api</module> |
| <module>camel-core-catalog</module> |
| <module>camel-support</module> |
| <module>camel-management-api</module> |
| <module>camel-management</module> |
| <module>camel-base</module> |
| <module>camel-base-engine</module> |
| <module>camel-xml-io-util</module> |
| <module>camel-xml-jaxp</module> |
| <module>camel-xml-jaxp-util</module> |
| <module>camel-cluster</module> |
| <module>camel-core-engine</module> |
| <module>camel-core-languages</module> |
| <module>camel-core-model</module> |
| <module>camel-core-processor</module> |
| <module>camel-core-reifier</module> |
| <module>camel-xml-io</module> |
| <module>camel-xml-jaxb</module> |
| <module>camel-yaml-io</module> |
| <module>camel-core</module> |
| <module>camel-core-xml</module> |
| <module>camel-cloud</module> |
| <module>camel-health</module> |
| <module>camel-console</module> |
| <module>camel-main</module> |
| <module>camel-core-all</module> |
| </modules> |
| |
| <properties> |
| <camel.surefire.parallel>true</camel.surefire.parallel> |
| </properties> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.camel</groupId> |
| <artifactId>camel-package-maven-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>generate</id> |
| <goals> |
| <goal>generate</goal> |
| </goals> |
| <phase>process-classes</phase> |
| </execution> |
| <execution> |
| <id>generate-postcompile</id> |
| <goals> |
| <goal>generate-postcompile</goal> |
| <goal>generate-others-list</goal> |
| </goals> |
| <phase>prepare-package</phase> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>recompile</id> |
| <goals> |
| <goal>compile</goal> |
| </goals> |
| <phase>process-classes</phase> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>build-helper-maven-plugin</artifactId> |
| <executions> |
| <execution> |
| <phase>generate-sources</phase> |
| <goals> |
| <goal>add-source</goal> |
| <goal>add-resource</goal> |
| </goals> |
| <configuration> |
| <sources> |
| <source>src/generated/java</source> |
| </sources> |
| <resources> |
| <resource> |
| <directory>src/generated/resources</directory> |
| </resource> |
| </resources> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |