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.
|
|
|
|
-->
|
2015-03-06 11:30:25 -05: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>
|
2024-08-16 10:23:18 -04:00
|
|
|
<version>2.38.0-SNAPSHOT</version>
|
2024-01-31 08:34:08 -05:00
|
|
|
<relativePath>../artemis-pom/pom.xml</relativePath>
|
2014-10-31 06:20:28 -04:00
|
|
|
</parent>
|
|
|
|
|
2015-05-03 11:40:36 -04:00
|
|
|
<artifactId>artemis-cli</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<packaging>jar</packaging>
|
2015-05-12 23:24:33 -04:00
|
|
|
<name>ActiveMQ Artemis CLI</name>
|
2014-10-31 06:20:28 -04:00
|
|
|
|
|
|
|
<properties>
|
2024-06-26 23:33:17 -04:00
|
|
|
<winsw.version>2.9.0</winsw.version>
|
2014-10-31 06:20:28 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
2023-07-06 22:37:18 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.jms</groupId>
|
|
|
|
<artifactId>jakarta.jms-api</artifactId>
|
|
|
|
</dependency>
|
2017-10-31 09:19:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-jms-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-commons</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-core-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-journal</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
2019-02-27 12:34:43 -05:00
|
|
|
<artifactId>activemq-artemis-native</artifactId>
|
|
|
|
<version>${activemq-artemis-native-version}</version>
|
2017-10-31 09:19:00 -04:00
|
|
|
</dependency>
|
2023-07-06 22:37:18 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
2023-12-25 20:46:22 -05:00
|
|
|
<artifactId>artemis-lockmanager-api</artifactId>
|
2023-07-06 22:37:18 -04:00
|
|
|
</dependency>
|
2014-11-10 11:14:12 -05:00
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-server</artifactId>
|
2014-11-10 11:14:12 -05:00
|
|
|
</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-jms-server</artifactId>
|
2014-11-10 11:14:12 -05:00
|
|
|
</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-dto</artifactId>
|
2014-11-10 11:14:12 -05:00
|
|
|
</dependency>
|
2017-10-31 09:19:00 -04:00
|
|
|
<dependency>
|
2021-04-09 04:25:17 -04:00
|
|
|
<groupId>jakarta.inject</groupId>
|
|
|
|
<artifactId>jakarta.inject-api</artifactId>
|
2017-10-31 09:19:00 -04:00
|
|
|
</dependency>
|
2018-03-29 11:37:56 -04:00
|
|
|
<!-- artemis producer and consumer can use amqp as the protocol -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.qpid</groupId>
|
|
|
|
<artifactId>qpid-jms-client</artifactId>
|
|
|
|
</dependency>
|
2022-09-28 07:18:59 -04:00
|
|
|
<!-- logging -->
|
2014-10-31 06:20:28 -04:00
|
|
|
<dependency>
|
2022-09-28 07:18:59 -04:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-log-annotation-processor</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2015-03-11 18:49:10 -04:00
|
|
|
<scope>provided</scope>
|
2014-10-31 06:20:28 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-09-28 07:18:59 -04:00
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
</dependency>
|
2016-06-29 16:27:17 -04:00
|
|
|
<dependency>
|
2022-09-28 07:18:59 -04:00
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
2023-11-03 13:12:33 -04:00
|
|
|
<artifactId>log4j-slf4j2-impl</artifactId>
|
2022-09-28 07:18:59 -04:00
|
|
|
<scope>test</scope>
|
2016-06-29 16:27:17 -04:00
|
|
|
</dependency>
|
2023-07-06 22:37:18 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-common</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-buffer</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-transport</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
|
|
|
<version>${jakarta.xml.bind-api.version}</version>
|
|
|
|
</dependency>
|
2014-10-31 06:20:28 -04:00
|
|
|
<dependency>
|
2023-07-24 13:03:15 -04:00
|
|
|
<groupId>info.picocli</groupId>
|
|
|
|
<artifactId>picocli</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>info.picocli</groupId>
|
|
|
|
<artifactId>picocli-shell-jline3</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jline</groupId>
|
|
|
|
<artifactId>jline</artifactId>
|
|
|
|
</dependency>
|
2016-10-26 23:06:24 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
2019-01-29 19:35:16 -05:00
|
|
|
<artifactId>commons-lang3</artifactId>
|
2016-10-26 23:06:24 -04:00
|
|
|
</dependency>
|
2021-09-16 07:49:40 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hdrhistogram</groupId>
|
|
|
|
<artifactId>HdrHistogram</artifactId>
|
|
|
|
</dependency>
|
2016-10-26 23:06:24 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
2019-01-29 19:35:16 -05:00
|
|
|
<artifactId>commons-configuration2</artifactId>
|
|
|
|
<scope>test</scope>
|
2016-10-26 23:06:24 -04:00
|
|
|
</dependency>
|
2015-04-16 23:00:29 -04:00
|
|
|
<dependency>
|
2023-09-12 11:53:00 -04:00
|
|
|
<groupId>com.sun.winsw</groupId>
|
|
|
|
<artifactId>winsw</artifactId>
|
|
|
|
<version>${winsw.version}</version>
|
|
|
|
<classifier>bin</classifier>
|
|
|
|
<type>exe</type>
|
|
|
|
<scope>test</scope>
|
2015-04-16 23:00:29 -04:00
|
|
|
</dependency>
|
2015-03-02 05:14:53 -05:00
|
|
|
<dependency>
|
2024-06-03 08:14:01 -04:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
2015-03-02 05:14:53 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2024-03-07 21:47:49 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-11-10 16:31:19 -05:00
|
|
|
|
|
|
|
<!-- The johnzon-core and json-api contents are repackaged in -commons,
|
|
|
|
However maven can still need them during tests, which run against
|
|
|
|
the original -commons classes when built+run in the same reactor,
|
|
|
|
and not the jar containing the shaded bits. -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.johnzon</groupId>
|
|
|
|
<artifactId>johnzon-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.json</groupId>
|
|
|
|
<artifactId>jakarta.json-api</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-06-24 13:09:13 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-unit-test-support</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-10-31 06:20:28 -04:00
|
|
|
</dependencies>
|
|
|
|
|
2014-11-10 11:14:12 -05:00
|
|
|
<build>
|
2023-09-12 11:53:00 -04:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>${project.basedir}/src/main/resources</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**/*</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>${project.basedir}/src/main/filtered-resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<includes>
|
|
|
|
<include>**/*</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2015-04-16 23:00:29 -04:00
|
|
|
|
2023-09-12 11:53:00 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>unpack</id>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>com.sun.winsw</groupId>
|
|
|
|
<artifactId>winsw</artifactId>
|
|
|
|
<version>${winsw.version}</version>
|
|
|
|
<classifier>bin</classifier>
|
|
|
|
<type>exe</type>
|
|
|
|
<outputDirectory>${basedir}/target/classes/org/apache/activemq/artemis/cli/commands/bin/</outputDirectory>
|
|
|
|
<destFileName>artemis-service.exe</destFileName>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2014-11-10 11:14:12 -05:00
|
|
|
</build>
|
|
|
|
|
2016-05-17 10:03:02 -04:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>jenkins</id>
|
|
|
|
<name>jenkins</name>
|
2019-04-15 11:27:58 -04:00
|
|
|
<url>https://repo.jenkins-ci.org/releases/</url>
|
2016-05-17 10:03:02 -04:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
2014-11-10 11:14:12 -05:00
|
|
|
|
2014-10-31 06:20:28 -04:00
|
|
|
</project>
|