mirror of https://github.com/apache/activemq.git
https://issues.apache.org/jira/browse/AMQ-4594 - add log plugin to hawtio
This commit is contained in:
parent
fba8e25563
commit
f6f22df4f4
|
@ -408,6 +408,21 @@
|
|||
<version>${hawtio-version}</version>
|
||||
<type>war</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.fusesource.insight</groupId>
|
||||
<artifactId>insight-log-core</artifactId>
|
||||
<version>${insight-version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.fusesource.insight</groupId>
|
||||
<artifactId>insight-log4j</artifactId>
|
||||
<version>${insight-version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.ops4j.pax.url</groupId>
|
||||
<artifactId>pax-url-aether</artifactId>
|
||||
<version>${pax-url-version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -267,6 +267,10 @@
|
|||
<!-- REST API -->
|
||||
<include>org.jolokia:jolokia-core</include>
|
||||
<include>com.googlecode.json-simple:json-simple</include>
|
||||
<!-- ADDITIONAL HAWTIO PLUGINS -->
|
||||
<include>org.fusesource.insight:insight-log-core</include>
|
||||
<include>org.fusesource.insight:insight-log4j</include>
|
||||
<include>org.ops4j.pax.url:pax-url-aether</include>
|
||||
</includes>
|
||||
</dependencySet>
|
||||
</dependencySets>
|
||||
|
|
|
@ -29,6 +29,12 @@
|
|||
</property>
|
||||
</bean>
|
||||
|
||||
<!-- Allows log searching in hawtio console -->
|
||||
<bean id="logQuery" class="org.fusesource.insight.log.log4j.Log4jLogQuery"
|
||||
lazy-init="false" scope="singleton"
|
||||
init-method="start" destroy-method="stop">
|
||||
</bean>
|
||||
|
||||
<!--
|
||||
The <broker> element is used to configure the ActiveMQ broker.
|
||||
-->
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -71,6 +71,7 @@
|
|||
<hsqldb-version>1.8.0.12</hsqldb-version>
|
||||
<httpclient-version>4.2.5</httpclient-version>
|
||||
<httpcore-version>4.2.4</httpcore-version>
|
||||
<insight-version>7.2.0.redhat-024</insight-version>
|
||||
<jackson-version>1.9.12</jackson-version>
|
||||
<jasypt-version>1.9.0</jasypt-version>
|
||||
<jaxb-bundle-version>2.2.1.1_2</jaxb-bundle-version>
|
||||
|
@ -130,6 +131,7 @@
|
|||
<paxexam-karaf-container-version>1.0.0</paxexam-karaf-container-version>
|
||||
<pax-runner-version>1.6.1</pax-runner-version>
|
||||
<pax-tiny-bundle-version>1.3.1</pax-tiny-bundle-version>
|
||||
<pax-url-version>1.5.2</pax-url-version>
|
||||
<felix-configadmin-version>1.4.0</felix-configadmin-version>
|
||||
|
||||
<site-repo-url>scpexe://people.apache.org/www/activemq.apache.org/maven/</site-repo-url>
|
||||
|
|
Loading…
Reference in New Issue