2017-07-04 06:49:40 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
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.
|
|
|
|
-->
|
2017-08-31 13:47:57 -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/xsd/maven-4.0.0.xsd">
|
2017-07-04 06:49:40 -04:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<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>
|
2017-07-04 06:49:40 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>artemis-hawtio-pom</artifactId>
|
2017-07-24 22:01:40 -04:00
|
|
|
<name>ActiveMQ Artemis Cons</name>
|
2017-07-04 06:49:40 -04:00
|
|
|
|
|
|
|
<!-- hawtio plugins are almost always war files -->
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<!-- we only need to embed this dependency in the war, this contains
|
|
|
|
a nice helper class that our plugin can use to export it's plugin
|
|
|
|
mbean -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.hawt</groupId>
|
|
|
|
<artifactId>hawtio-plugin-mbean</artifactId>
|
|
|
|
<version>${hawtio.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- logging -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2022-02-17 12:17:48 -05:00
|
|
|
<version>${slf4j.version}</version>
|
2017-07-04 06:49:40 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>activemq-branding</module>
|
2017-07-05 11:34:18 -04:00
|
|
|
<module>artemis-plugin</module>
|
2017-07-24 22:01:40 -04:00
|
|
|
<module>artemis-console</module>
|
2017-07-04 06:49:40 -04:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
</project>
|