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>
|
2022-07-26 11:59:21 -04:00
|
|
|
<version>2.25.0-SNAPSHOT</version>
|
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
|
|
|
|
|
|
|
<properties>
|
|
|
|
<activemq.basedir>${project.basedir}/..</activemq.basedir>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-plugin-api</artifactId>
|
2015-06-09 21:09:11 -04:00
|
|
|
<version>3.3.3</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>
|
2021-09-14 04:46:01 -04:00
|
|
|
<version>3.8.2</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>
|
|
|
|
<version>2.0.8</version>
|
2015-05-12 17:59:02 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.aether</groupId>
|
2017-10-31 09:19:00 -04:00
|
|
|
<artifactId>aether-api</artifactId>
|
2015-05-12 17:59:02 -04:00
|
|
|
<version>1.0.2.v20150114</version>
|
|
|
|
</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
|
|
|
<version>${project.version}</version>
|
|
|
|
</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
|
|
|
<version>${project.version}</version>
|
|
|
|
</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
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-cli</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2015-06-09 21:09:11 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugin-tools</groupId>
|
|
|
|
<artifactId>maven-plugin-annotations</artifactId>
|
|
|
|
<version>3.4</version>
|
|
|
|
<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>
|
2020-04-29 12:14:47 -04:00
|
|
|
<version>3.6.0</version>
|
2015-06-09 21:09:11 -04:00
|
|
|
<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>
|