| <?xml version='1.0'?> |
| <!-- |
| 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.activemq.examples.broker-connection</groupId> |
| <artifactId>broker-connections</artifactId> |
| <version>2.38.0</version> |
| </parent> |
| |
| <artifactId>amqp-federation-over-ssl</artifactId> |
| <packaging>jar</packaging> |
| <name>amqp-federation-over-ssl</name> |
| |
| <properties> |
| <activemq.basedir>${project.basedir}/../../../..</activemq.basedir> |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.qpid</groupId> |
| <artifactId>qpid-jms-client</artifactId> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.activemq</groupId> |
| <artifactId>artemis-maven-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>create0</id> |
| <goals> |
| <goal>create</goal> |
| </goals> |
| <configuration> |
| <ignore>${noServer}</ignore> |
| <instance>${basedir}/target/server0</instance> |
| <allowAnonymous>true</allowAnonymous> |
| <configuration>${basedir}/target/classes/activemq/server0</configuration> |
| <!-- this makes it easier in certain envs --> |
| <javaOptions>-Djava.net.preferIPv4Stack=true</javaOptions> |
| </configuration> |
| </execution> |
| <execution> |
| <id>create1</id> |
| <goals> |
| <goal>create</goal> |
| </goals> |
| <configuration> |
| <ignore>${noServer}</ignore> |
| <instance>${basedir}/target/server1</instance> |
| <allowAnonymous>true</allowAnonymous> |
| <configuration>${basedir}/target/classes/activemq/server1</configuration> |
| <!-- this makes it easier in certain envs --> |
| <javaOptions>-Djava.net.preferIPv4Stack=true</javaOptions> |
| </configuration> |
| </execution> |
| <!-- we first start broker 1, to avoid reconnecting statements --> |
| <execution> |
| <id>start1</id> |
| <goals> |
| <goal>cli</goal> |
| </goals> |
| <configuration> |
| <ignore>${noServer}</ignore> |
| <spawn>true</spawn> |
| <location>${basedir}/target/server1</location> |
| <testURI>tcp://localhost:5770?sslEnabled=true&trustStorePath=activemq/server1/server-ca-truststore.p12&trustStorePassword=securepass&trustStoreType=PKCS12</testURI> |
| <args> |
| <param>run</param> |
| </args> |
| <name>server1</name> |
| </configuration> |
| </execution> |
| <execution> |
| <id>start0</id> |
| <goals> |
| <goal>cli</goal> |
| </goals> |
| <configuration> |
| <spawn>true</spawn> |
| <ignore>${noServer}</ignore> |
| <location>${basedir}/target/server0</location> |
| <testURI>tcp://localhost:5660?sslEnabled=true&trustStorePath=activemq/server0/server-ca-truststore.p12&trustStorePassword=securepass&trustStoreType=PKCS12</testURI> |
| <args> |
| <param>run</param> |
| </args> |
| <name>server0</name> |
| </configuration> |
| </execution> |
| <execution> |
| <id>runClient</id> |
| <goals> |
| <goal>runClient</goal> |
| </goals> |
| <configuration> |
| <!-- you may have to set export MAVEN_OPTS="-Djava.net.preferIPv4Stack=true" |
| if you are on MacOS for instance --> |
| <clientClass>org.apache.activemq.artemis.jms.example.BrokerFederationExample</clientClass> |
| </configuration> |
| </execution> |
| <execution> |
| <id>stop0</id> |
| <goals> |
| <goal>stop</goal> |
| </goals> |
| <configuration> |
| <ignore>${noServer}</ignore> |
| <location>${basedir}/target/server0</location> |
| </configuration> |
| </execution> |
| <execution> |
| <id>stop1</id> |
| <goals> |
| <goal>stop</goal> |
| </goals> |
| <configuration> |
| <ignore>${noServer}</ignore> |
| <location>${basedir}/target/server1</location> |
| </configuration> |
| </execution> |
| </executions> |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.activemq.examples.broker-connection</groupId> |
| <artifactId>amqp-federation-over-ssl</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| </dependencies> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-clean-plugin</artifactId> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |