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-12-08 23:31:39 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-pom</artifactId>
|
2024-06-12 11:58:53 -04:00
|
|
|
<version>2.36.0-SNAPSHOT</version>
|
2024-01-31 08:34:08 -05:00
|
|
|
<relativePath>../artemis-pom/pom.xml</relativePath>
|
2014-12-08 23:31:39 -05:00
|
|
|
</parent>
|
|
|
|
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-maven-plugin</artifactId>
|
2014-12-08 23:31:39 -05:00
|
|
|
<packaging>maven-plugin</packaging>
|
2015-04-21 09:49:05 -04:00
|
|
|
<name>ActiveMQ Artemis Maven Plugin</name>
|
2014-12-08 23:31:39 -05:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-plugin-api</artifactId>
|
2024-06-30 22:50:39 -04:00
|
|
|
<version>3.9.8</version>
|
2014-12-08 23:31:39 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2017-10-31 09:19:00 -04:00
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact</artifactId>
|
2024-06-27 22:50:33 -04:00
|
|
|
<version>3.9.8</version>
|
2014-12-08 23:31:39 -05:00
|
|
|
</dependency>
|
2015-05-12 17:59:02 -04:00
|
|
|
<dependency>
|
2017-10-31 09:19:00 -04:00
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-project</artifactId>
|
2022-07-29 15:53:30 -04:00
|
|
|
<version>2.2.1</version>
|
2024-06-03 08:14:01 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2015-05-12 17:59:02 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-03-10 05:25:49 -05:00
|
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
|
|
<artifactId>maven-resolver-api</artifactId>
|
2024-06-27 22:49:50 -04:00
|
|
|
<version>1.9.20</version>
|
2015-05-12 17:59:02 -04:00
|
|
|
</dependency>
|
2014-12-08 23:31:39 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
2017-10-31 09:19:00 -04:00
|
|
|
<artifactId>artemis-boot</artifactId>
|
2014-12-08 23:31:39 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
2017-10-31 09:19:00 -04:00
|
|
|
<artifactId>artemis-commons</artifactId>
|
2014-12-08 23:31:39 -05:00
|
|
|
</dependency>
|
2015-05-12 17:59:02 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
2021-09-14 23:20:18 -04:00
|
|
|
<artifactId>artemis-core-client</artifactId>
|
2015-05-12 17:59:02 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-cli</artifactId>
|
2024-02-01 11:11:02 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<!-- see https://github.com/jline/jline3/issues/937 -->
|
|
|
|
<groupId>info.picocli</groupId>
|
|
|
|
<artifactId>picocli-shell-jline3</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<!-- see https://github.com/jline/jline3/issues/937 -->
|
|
|
|
<groupId>org.jline</groupId>
|
|
|
|
<artifactId>jline</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2015-05-12 17:59:02 -04:00
|
|
|
</dependency>
|
2015-06-09 21:09:11 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugin-tools</groupId>
|
|
|
|
<artifactId>maven-plugin-annotations</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2014-12-08 23:31:39 -05:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2019-04-24 12:14:57 -04:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
2015-06-09 21:09:11 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-plugin-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default-descriptor</id>
|
|
|
|
<phase>process-classes</phase>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.m2e</groupId>
|
|
|
|
<artifactId>lifecycle-mapping</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<configuration>
|
|
|
|
<lifecycleMappingMetadata>
|
|
|
|
<pluginExecutions>
|
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-plugin-plugin</artifactId>
|
|
|
|
<versionRange>[3.3,)</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>descriptor</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
2015-09-04 14:48:52 -04:00
|
|
|
<ignore />
|
2015-06-09 21:09:11 -04:00
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
|
|
|
</pluginExecutions>
|
|
|
|
</lifecycleMappingMetadata>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2014-12-08 23:31:39 -05:00
|
|
|
</build>
|
|
|
|
</project>
|