2015-01-05 07:45:36 -05:00
|
|
|
<!--
|
|
|
|
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.
|
|
|
|
-->
|
2016-11-03 15:34:54 -04:00
|
|
|
<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">
|
2014-10-31 06:20:28 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-pom</artifactId>
|
2021-10-11 14:35:57 -04:00
|
|
|
<version>2.20.0-SNAPSHOT</version>
|
2014-10-31 06:20:28 -04:00
|
|
|
</parent>
|
|
|
|
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-core-client</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<packaging>jar</packaging>
|
2015-04-21 09:49:05 -04:00
|
|
|
<name>ActiveMQ Artemis Core Client</name>
|
2014-10-31 06:20:28 -04:00
|
|
|
|
|
|
|
<properties>
|
2014-11-19 14:58:44 -05:00
|
|
|
<activemq.basedir>${project.basedir}/..</activemq.basedir>
|
2014-10-31 06:20:28 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.logging</groupId>
|
|
|
|
<artifactId>jboss-logging-processor</artifactId>
|
2015-03-11 18:49:10 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
<optional>true</optional>
|
2014-10-31 06:20:28 -04:00
|
|
|
</dependency>
|
2017-10-31 09:19:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.logging</groupId>
|
|
|
|
<artifactId>jboss-logging-annotations</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2016-06-29 16:27:17 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.logging</groupId>
|
|
|
|
<artifactId>jboss-logging</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.logmanager</groupId>
|
|
|
|
<artifactId>jboss-logmanager</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2020-04-29 12:14:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.errorprone</groupId>
|
|
|
|
<artifactId>error_prone_core</artifactId>
|
|
|
|
</dependency>
|
2019-04-24 12:14:57 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.wildfly.common</groupId>
|
|
|
|
<artifactId>wildfly-common</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2014-10-31 06:20:28 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jgroups</groupId>
|
|
|
|
<artifactId>jgroups</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-commons</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-10-31 09:19:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
2019-06-07 12:06:12 -04:00
|
|
|
<artifactId>hamcrest</artifactId>
|
|
|
|
<version>${hamcrest.version}</version>
|
2017-10-31 09:19:00 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-07-17 19:05:19 -04:00
|
|
|
<dependency>
|
2021-04-09 04:25:17 -04:00
|
|
|
<groupId>jakarta.json</groupId>
|
|
|
|
<artifactId>jakarta.json-api</artifactId>
|
2016-07-17 19:05:19 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.johnzon</groupId>
|
|
|
|
<artifactId>johnzon-core</artifactId>
|
|
|
|
</dependency>
|
2017-10-23 12:37:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
2017-10-24 18:15:53 -04:00
|
|
|
<artifactId>netty-transport-native-epoll</artifactId>
|
|
|
|
<classifier>${netty-transport-native-epoll-classifier}</classifier>
|
2017-10-23 12:37:41 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
2017-10-24 18:15:53 -04:00
|
|
|
<artifactId>netty-transport-native-kqueue</artifactId>
|
|
|
|
<classifier>${netty-transport-native-kqueue-classifier}</classifier>
|
2017-10-23 12:37:41 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-codec-http</artifactId>
|
|
|
|
</dependency>
|
2017-10-31 09:19:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-buffer</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-transport</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-handler</artifactId>
|
|
|
|
</dependency>
|
2020-03-07 17:04:03 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-handler-proxy</artifactId>
|
|
|
|
</dependency>
|
2017-10-31 09:19:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-codec</artifactId>
|
|
|
|
</dependency>
|
2020-03-07 17:04:03 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-codec-socks</artifactId>
|
|
|
|
</dependency>
|
2017-10-31 09:19:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-common</artifactId>
|
|
|
|
</dependency>
|
2014-10-31 06:20:28 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<useStandardDocletOptions>true</useStandardDocletOptions>
|
|
|
|
<minmemory>128m</minmemory>
|
|
|
|
<maxmemory>512m</maxmemory>
|
|
|
|
<quiet>false</quiet>
|
|
|
|
<aggregate>true</aggregate>
|
2016-09-29 17:07:38 -04:00
|
|
|
<excludePackageNames>org.apache.activemq.artemis.core:org.apache.activemq.artemis.utils
|
|
|
|
</excludePackageNames>
|
2014-10-31 06:20:28 -04:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|