blob: 2fc3083f8cb3b56c04f03ba30cb5c08d1fa2c04f [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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.camel.example</groupId>
<artifactId>examples</artifactId>
<version>2.24.1</version>
</parent>
<artifactId>camel-example-spring-pulsar</artifactId>
<packaging>jar</packaging>
<name>Camel :: Example :: Spring :: Pulsar</name>
<description>An example using Spring XML to talk to the Pulsar server from different kind of client techniques</description>
<properties>
<camel.osgi.export.pkg>org.apache.camel.example.server.*</camel.osgi.export.pkg>
<camel.osgi.import.additional>org.apache.activemq.xbean</camel.osgi.import.additional>
<skipTests>true</skipTests>
</properties>
<dependencies>
<!-- START SNIPPET: e1 -->
<!-- required by both client and server -->
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-spring</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-pulsar</artifactId>
<version>2.24.1</version>
</dependency>
<!-- END SNIPPET: e1 -->
<!-- START SNIPPET: e2 -->
<!-- xbean is required for ActiveMQ broker configuration in the spring xml file -->
<dependency>
<groupId>org.apache.xbean</groupId>
<artifactId>xbean-spring</artifactId>
</dependency>
<!-- END SNIPPET: e2 -->
<!-- for logging using log4j.properties in src/main/resources -->
<!-- logging -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j2-version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j2-version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j2-version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
<version>${log4j2-version}</version>
</dependency>
<!-- for testing -->
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-test-spring</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>CamelServer</id>
<properties>
<!-- we use Camel spring Main class as the server got all what it needs to start in the camel-server.xml file -->
<target.main.class>org.apache.camel.spring.Main</target.main.class>
<target.cmd.args>-ac META-INF/spring/camel-server.xml</target.cmd.args>
</properties>
</profile>
<profile>
<id>CamelClient</id>
<properties>
<!-- we start using our own class to control what we do in the main -->
<target.main.class>org.apache.camel.example.pulsar.client.CamelClient</target.main.class>
</properties>
</profile>
<profile>
<id>CamelClientRemoting</id>
<properties>
<!-- we start using our own class to control what we do in the main -->
<target.main.class>org.apache.camel.example.pulsar.client.CamelClientRemoting</target.main.class>
</properties>
</profile>
<profile>
<id>CamelClientEndpoint</id>
<properties>
<!-- we start using our own class to control what we do in the main -->
<target.main.class>org.apache.camel.example.pulsar.client.CamelClientEndpoint</target.main.class>
</properties>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>target/classes/features.xml</file>
<type>xml</type>
<classifier>features</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
<!-- Allows the example to be run via 'mvn compile exec:java' -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<configuration>
<mainClass>${target.main.class}</mainClass>
<includePluginDependencies>false</includePluginDependencies>
<commandlineArgs>${target.cmd.args}</commandlineArgs>
</configuration>
</plugin>
</plugins>
</build>
</project>