180 lines
6.8 KiB
XML
180 lines
6.8 KiB
XML
<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.hornetq.examples.core</groupId>
|
|
<artifactId>core-examples</artifactId>
|
|
<version>2.5.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>hornetq-core-perf-example</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>HornetQ Perf Example</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.hornetq</groupId>
|
|
<artifactId>hornetq-core-client</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hornetq</groupId>
|
|
<artifactId>hornetq-commons</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty-all</artifactId>
|
|
<version>${netty.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jboss.javaee</groupId>
|
|
<artifactId>jboss-jms-api</artifactId>
|
|
<version>1.1.0.GA</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jboss.naming</groupId>
|
|
<artifactId>jnp-client</artifactId>
|
|
<version>5.0.5.Final</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hornetq.examples.jms</groupId>
|
|
<artifactId>hornetq-jms-examples-common</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jboss.spec.javax.jms</groupId>
|
|
<artifactId>jboss-jms-api_2.0_spec</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>default</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.hornetq</groupId>
|
|
<artifactId>hornetq-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>start</id>
|
|
<goals>
|
|
<goal>start</goal>
|
|
</goals>
|
|
<configuration>
|
|
<waitOnStart>true</waitOnStart>
|
|
<hornetqConfigurationDir>${basedir}/target/classes/server0</hornetqConfigurationDir>
|
|
<systemProperties>
|
|
<property>
|
|
<name>build.directory</name>
|
|
<value>${basedir}/target/</value>
|
|
</property>
|
|
</systemProperties>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<waitOnStart>false</waitOnStart>
|
|
<hornetqConfigurationDir>${basedir}/target/classes/server0</hornetqConfigurationDir>
|
|
</configuration>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.hornetq.examples.core</groupId>
|
|
<artifactId>hornetq-core-perf-example</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hornetq</groupId>
|
|
<artifactId>hornetq-core-client</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hornetq</groupId>
|
|
<artifactId>hornetq-server</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hornetq</groupId>
|
|
<artifactId>hornetq-jms-client</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hornetq</groupId>
|
|
<artifactId>hornetq-jms-server</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty-all</artifactId>
|
|
<version>${netty.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jboss.javaee</groupId>
|
|
<artifactId>jboss-jms-api</artifactId>
|
|
<version>1.1.0.GA</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jboss.naming</groupId>
|
|
<artifactId>jnpserver</artifactId>
|
|
<version>5.0.3.GA</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
<profile>
|
|
<id>listener</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>1.1</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>java</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<mainClass>org.hornetq.core.example.PerfListener</mainClass>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
<profile>
|
|
<id>sender</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>1.1</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>java</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<mainClass>org.hornetq.core.example.PerfSender</mainClass>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
|
|
</project> |