183 lines
8.2 KiB
XML
183 lines
8.2 KiB
XML
<?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>3.4.5-ENTAXY</version>
|
|
<relativePath>../parent</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-caffeine-lrucache</module>-->
|
|
<!-- <module>camel-management-api</module>-->
|
|
<!-- <module>camel-management</module>-->
|
|
<module>camel-base</module>
|
|
<!-- <module>camel-xml-jaxp</module>-->
|
|
<!-- <module>camel-cluster</module>-->
|
|
<module>camel-core-engine</module>
|
|
<!-- <module>camel-core-languages</module>-->
|
|
<!-- <module>camel-xml-io</module>-->
|
|
<!-- <module>camel-xml-jaxb</module>-->
|
|
<!-- <module>camel-core</module>-->
|
|
<!-- <module>camel-core-xml</module>-->
|
|
<!-- <module>camel-cloud</module>-->
|
|
<!-- <module>camel-health</module>-->
|
|
<!-- <module>camel-main</module>-->
|
|
<!-- <module>camel-allcomponents</module>-->
|
|
<!-- <module>camel-endpointdsl</module>-->
|
|
<!-- <module>camel-componentdsl</module>-->
|
|
</modules>
|
|
|
|
<properties>
|
|
<camel.osgi.manifest>${project.build.outputDirectory}/META-INF/MANIFEST.MF</camel.osgi.manifest>
|
|
</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>
|
|
</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>
|
|
<!-- generate sources JAR by default as they are needed by other Camel sub projects -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>3.2.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>jar-no-fork</goal>
|
|
</goals>
|
|
</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>
|
|
<plugin>
|
|
<groupId>org.apache.camel</groupId>
|
|
<artifactId>camel-bundle-plugin</artifactId>
|
|
<version>${camel.version}</version>
|
|
<configuration>
|
|
<supportIncrementalBuild>true</supportIncrementalBuild>
|
|
<noWarningProjectTypes>pom</noWarningProjectTypes>
|
|
<excludeDependencies>${camel.osgi.exclude.dependencies}</excludeDependencies>
|
|
<instructions>
|
|
<Bundle-Name>${project.artifactId}</Bundle-Name>
|
|
<Bundle-SymbolicName>${camel.osgi.symbolic.name}</Bundle-SymbolicName>
|
|
<Bundle-Activator>${camel.osgi.activator}</Bundle-Activator>
|
|
<Import-Package>${camel.osgi.import}</Import-Package>
|
|
<Export-Package>${camel.osgi.export}</Export-Package>
|
|
<DynamicImport-Package>${camel.osgi.dynamic}</DynamicImport-Package>
|
|
<Private-Package>${camel.osgi.private.pkg}</Private-Package>
|
|
<Require-Capability>${camel.osgi.require.capability}</Require-Capability>
|
|
<Provide-Capability>${camel.osgi.provide.capability}</Provide-Capability>
|
|
<Implementation-Title>Apache Camel</Implementation-Title>
|
|
<Implementation-Version>${camel.version}</Implementation-Version>
|
|
<Karaf-Info>Camel;${project.artifactId}=${camel.version}</Karaf-Info>
|
|
<_versionpolicy>${camel.osgi.import.default.version}</_versionpolicy>
|
|
<_failok>${camel.osgi.failok}</_failok>
|
|
<_removeheaders>Bnd-LastModified</_removeheaders>
|
|
</instructions>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>versions</id>
|
|
<phase>validate</phase>
|
|
<goals>
|
|
<goal>cleanVersions</goal>
|
|
</goals>
|
|
<configuration>
|
|
<versions>
|
|
<camel.osgi.version.clean>${camel.version}</camel.osgi.version.clean>
|
|
</versions>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>bundle-manifest</id>
|
|
<phase>prepare-package</phase>
|
|
<goals>
|
|
<goal>manifest</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |