2013-04-24 17:02:07 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2018-10-06 07:57:16 +08:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2019-03-17 00:01:11 +08:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2013-04-24 17:02:07 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2013-07-26 18:50:02 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-07-27 03:30:54 +08:00
|
|
|
<artifactId>spring-boot-parent</artifactId>
|
2017-06-01 05:27:23 +08:00
|
|
|
<version>${revision}</version>
|
2013-08-03 12:48:19 +08:00
|
|
|
<relativePath>../spring-boot-parent</relativePath>
|
2013-04-24 17:02:07 +08:00
|
|
|
</parent>
|
2013-07-31 16:46:34 +08:00
|
|
|
<artifactId>spring-boot-actuator</artifactId>
|
2014-04-01 16:10:51 +08:00
|
|
|
<name>Spring Boot Actuator</name>
|
|
|
|
<description>Spring Boot Actuator</description>
|
2013-07-06 01:26:50 +08:00
|
|
|
<properties>
|
2017-06-01 05:27:23 +08:00
|
|
|
<main.basedir>${basedir}/../..</main.basedir>
|
2013-07-06 01:26:50 +08:00
|
|
|
</properties>
|
2013-04-24 17:02:07 +08:00
|
|
|
<dependencies>
|
2013-07-06 01:26:50 +08:00
|
|
|
<!-- Compile -->
|
2013-04-24 17:02:07 +08:00
|
|
|
<dependency>
|
2014-04-30 23:42:23 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-07-27 03:30:54 +08:00
|
|
|
<artifactId>spring-boot</artifactId>
|
|
|
|
</dependency>
|
2017-09-01 13:19:44 +08:00
|
|
|
<!-- Optional -->
|
2013-04-24 17:02:07 +08:00
|
|
|
<dependency>
|
2013-07-06 01:26:50 +08:00
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2015-07-15 00:12:52 +08:00
|
|
|
<optional>true</optional>
|
2015-07-02 01:36:21 +08:00
|
|
|
</dependency>
|
2018-01-03 22:21:19 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.hazelcast</groupId>
|
|
|
|
<artifactId>hazelcast</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.hazelcast</groupId>
|
|
|
|
<artifactId>hazelcast-spring</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2016-01-08 07:10:11 +08:00
|
|
|
<dependency>
|
2017-09-11 11:59:45 +08:00
|
|
|
<groupId>com.sun.mail</groupId>
|
|
|
|
<artifactId>javax.mail</artifactId>
|
2015-03-21 01:06:54 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2017-09-11 11:59:45 +08:00
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
2015-03-21 01:06:54 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2015-03-09 03:21:13 +08:00
|
|
|
<dependency>
|
2017-09-11 11:59:45 +08:00
|
|
|
<groupId>io.lettuce</groupId>
|
|
|
|
<artifactId>lettuce-core</artifactId>
|
2015-03-09 03:21:13 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2015-04-23 20:25:57 +08:00
|
|
|
<dependency>
|
2017-09-11 11:59:45 +08:00
|
|
|
<groupId>io.micrometer</groupId>
|
|
|
|
<artifactId>micrometer-core</artifactId>
|
2015-04-23 20:25:57 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2017-06-30 21:44:15 +08:00
|
|
|
<dependency>
|
2017-09-11 11:59:45 +08:00
|
|
|
<groupId>io.micrometer</groupId>
|
2017-09-15 10:22:44 +08:00
|
|
|
<artifactId>micrometer-registry-prometheus</artifactId>
|
2017-06-30 21:44:15 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2018-10-06 07:57:16 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.prometheus</groupId>
|
|
|
|
<artifactId>simpleclient_pushgateway</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2018-10-05 19:50:59 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.reactivex</groupId>
|
|
|
|
<artifactId>rxjava-reactive-streams</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2017-06-30 20:08:55 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.searchbox</groupId>
|
|
|
|
<artifactId>jest</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2018-11-29 02:43:06 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.elasticsearch.client</groupId>
|
|
|
|
<artifactId>elasticsearch-rest-client</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2018-01-17 02:24:33 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.undertow</groupId>
|
|
|
|
<artifactId>undertow-servlet</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.jboss.spec.javax.servlet</groupId>
|
|
|
|
<artifactId>jboss-servlet-api_3.1_spec</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2018-01-03 22:21:19 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.cache</groupId>
|
|
|
|
<artifactId>cache-api</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2016-09-30 03:33:21 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.jms</groupId>
|
|
|
|
<artifactId>javax.jms-api</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2018-01-03 22:21:19 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.ehcache</groupId>
|
|
|
|
<artifactId>ehcache</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2015-03-21 01:06:54 +08:00
|
|
|
<dependency>
|
2017-09-11 11:59:45 +08:00
|
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
|
|
<artifactId>tomcat-embed-core</artifactId>
|
2015-03-21 01:06:54 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2017-06-30 20:08:55 +08:00
|
|
|
<dependency>
|
2017-09-11 11:59:45 +08:00
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
|
<artifactId>aspectjweaver</artifactId>
|
2017-06-30 20:08:55 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2018-10-13 18:30:57 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2017-06-30 20:08:55 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
<artifactId>elasticsearch</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2015-07-07 07:39:20 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.flywaydb</groupId>
|
|
|
|
<artifactId>flyway-core</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2017-07-12 16:08:43 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.core</groupId>
|
|
|
|
<artifactId>jersey-server</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.containers</groupId>
|
|
|
|
<artifactId>jersey-container-servlet-core</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2014-01-22 01:41:27 +08:00
|
|
|
<dependency>
|
2017-08-08 04:16:08 +08:00
|
|
|
<groupId>org.hibernate.validator</groupId>
|
2014-01-22 01:41:27 +08:00
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2015-06-01 23:41:59 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.infinispan</groupId>
|
2016-02-26 04:19:08 +08:00
|
|
|
<artifactId>infinispan-spring4-embedded</artifactId>
|
2015-06-01 23:41:59 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2017-11-27 04:14:40 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.influxdb</groupId>
|
|
|
|
<artifactId>influxdb-java</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2015-07-07 07:39:20 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.liquibase</groupId>
|
|
|
|
<artifactId>liquibase-core</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2018-02-13 18:17:37 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mongodb</groupId>
|
|
|
|
<artifactId>mongodb-driver-async</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mongodb</groupId>
|
|
|
|
<artifactId>mongodb-driver-reactivestreams</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2014-01-22 01:41:27 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
2017-08-27 20:25:59 +08:00
|
|
|
<artifactId>spring-jdbc</artifactId>
|
2014-01-22 01:41:27 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2013-04-24 17:02:07 +08:00
|
|
|
<dependency>
|
2013-07-06 01:26:50 +08:00
|
|
|
<groupId>org.springframework</groupId>
|
2017-08-27 20:25:59 +08:00
|
|
|
<artifactId>spring-messaging</artifactId>
|
2013-11-01 00:49:36 +08:00
|
|
|
<optional>true</optional>
|
2013-04-24 17:02:07 +08:00
|
|
|
</dependency>
|
2017-07-12 16:08:43 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webflux</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2017-09-01 13:19:44 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2013-04-24 17:02:07 +08:00
|
|
|
<dependency>
|
2013-07-06 01:26:50 +08:00
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
<optional>true</optional>
|
2013-04-24 17:02:07 +08:00
|
|
|
</dependency>
|
2017-06-30 20:08:55 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.amqp</groupId>
|
|
|
|
<artifactId>spring-rabbit</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2014-12-22 18:06:37 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-cassandra</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2015-07-30 15:49:50 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-couchbase</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2017-01-08 08:40:05 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-ldap</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2014-05-22 23:45:14 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-mongodb</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2013-12-07 00:10:50 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
2015-09-02 14:57:37 +08:00
|
|
|
<artifactId>spring-data-neo4j</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
2013-12-07 00:10:50 +08:00
|
|
|
<artifactId>spring-data-redis</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2018-01-17 02:24:33 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-rest-webmvc</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2014-05-08 18:37:37 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
2014-05-22 23:45:14 +08:00
|
|
|
<artifactId>spring-data-solr</artifactId>
|
2014-05-08 18:37:37 +08:00
|
|
|
<optional>true</optional>
|
2015-07-15 00:12:52 +08:00
|
|
|
<exclusions>
|
2017-06-13 12:06:03 +08:00
|
|
|
<!-- the version of solr here is incompatible with jackson-xml because
|
|
|
|
of an old woodstox -->
|
2015-07-15 00:12:52 +08:00
|
|
|
<exclusion>
|
|
|
|
<artifactId>wstx-asl</artifactId>
|
|
|
|
<groupId>org.codehaus.woodstox</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-05-08 18:37:37 +08:00
|
|
|
</dependency>
|
2015-05-18 18:21:33 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.integration</groupId>
|
|
|
|
<artifactId>spring-integration-core</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2013-07-01 22:25:53 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
2017-09-01 13:19:44 +08:00
|
|
|
<artifactId>spring-security-core</artifactId>
|
2013-04-24 17:02:07 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2014-10-01 23:22:08 +08:00
|
|
|
<dependency>
|
2017-06-30 20:08:55 +08:00
|
|
|
<groupId>org.springframework.security</groupId>
|
2017-08-27 20:25:59 +08:00
|
|
|
<artifactId>spring-security-web</artifactId>
|
2014-10-01 23:22:08 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2016-11-28 06:18:37 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.session</groupId>
|
|
|
|
<artifactId>spring-session-core</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2014-10-29 06:04:52 +08:00
|
|
|
<!-- Annotation processing -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2013-07-06 01:26:50 +08:00
|
|
|
<!-- Test -->
|
2016-02-20 03:14:36 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2017-06-13 12:06:03 +08:00
|
|
|
<artifactId>spring-boot-test-support</artifactId>
|
2016-02-20 03:14:36 +08:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-01-05 18:51:03 +08:00
|
|
|
<dependency>
|
2018-02-08 18:54:27 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
2018-01-05 18:51:03 +08:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-12-03 23:06:32 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-10-03 06:35:58 +08:00
|
|
|
<dependency>
|
2017-09-01 13:19:44 +08:00
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-slf4j-impl</artifactId>
|
2015-10-03 06:35:58 +08:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-07-12 16:08:43 +08:00
|
|
|
<dependency>
|
2017-09-01 13:19:44 +08:00
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-api</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.media</groupId>
|
|
|
|
<artifactId>jersey-media-json-jackson</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
|
|
<artifactId>json-path</artifactId>
|
2017-08-23 21:08:23 +08:00
|
|
|
<scope>test</scope>
|
2017-07-12 16:08:43 +08:00
|
|
|
</dependency>
|
2017-08-23 20:59:02 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.projectreactor</groupId>
|
|
|
|
<artifactId>reactor-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-09-01 13:19:44 +08:00
|
|
|
<dependency>
|
2018-06-05 00:59:17 +08:00
|
|
|
<groupId>io.projectreactor.netty</groupId>
|
2017-09-01 13:19:44 +08:00
|
|
|
<artifactId>reactor-netty</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2013-11-28 22:20:26 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hsqldb</groupId>
|
|
|
|
<artifactId>hsqldb</artifactId>
|
2014-02-11 21:36:50 +08:00
|
|
|
<scope>test</scope>
|
2013-11-28 22:20:26 +08:00
|
|
|
</dependency>
|
2017-07-12 16:08:43 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.ext</groupId>
|
2017-09-08 00:22:37 +08:00
|
|
|
<artifactId>jersey-spring4</artifactId>
|
2017-07-12 16:08:43 +08:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-11-16 05:57:16 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.skyscreamer</groupId>
|
|
|
|
<artifactId>jsonassert</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-11-29 02:43:06 +08:00
|
|
|
|
2013-04-24 17:02:07 +08:00
|
|
|
</dependencies>
|
|
|
|
</project>
|