359 lines
		
	
	
		
			10 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			359 lines
		
	
	
		
			10 KiB
		
	
	
	
		
			XML
		
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
 | |
| 	<modelVersion>4.0.0</modelVersion>
 | |
| 	<parent>
 | |
| 		<groupId>org.springframework.boot</groupId>
 | |
| 		<artifactId>spring-boot-parent</artifactId>
 | |
| 		<version>${revision}</version>
 | |
| 		<relativePath>../spring-boot-parent</relativePath>
 | |
| 	</parent>
 | |
| 	<artifactId>spring-boot-actuator</artifactId>
 | |
| 	<name>Spring Boot Actuator</name>
 | |
| 	<description>Spring Boot Actuator</description>
 | |
| 	<properties>
 | |
| 		<main.basedir>${basedir}/../..</main.basedir>
 | |
| 	</properties>
 | |
| 	<scm>
 | |
| 		<url>${git.url}</url>
 | |
| 		<connection>${git.connection}</connection>
 | |
| 		<developerConnection>${git.developerConnection}</developerConnection>
 | |
| 	</scm>
 | |
| 	<dependencies>
 | |
| 		<!-- Compile -->
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.boot</groupId>
 | |
| 			<artifactId>spring-boot</artifactId>
 | |
| 		</dependency>
 | |
| 		<!-- Optional -->
 | |
| 		<dependency>
 | |
| 			<groupId>com.fasterxml.jackson.core</groupId>
 | |
| 			<artifactId>jackson-databind</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<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>
 | |
| 		<dependency>
 | |
| 			<groupId>com.sun.mail</groupId>
 | |
| 			<artifactId>javax.mail</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>com.zaxxer</groupId>
 | |
| 			<artifactId>HikariCP</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>io.lettuce</groupId>
 | |
| 			<artifactId>lettuce-core</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>io.micrometer</groupId>
 | |
| 			<artifactId>micrometer-core</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>io.micrometer</groupId>
 | |
| 			<artifactId>micrometer-registry-prometheus</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>io.prometheus</groupId>
 | |
| 			<artifactId>simpleclient_pushgateway</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>io.reactivex</groupId>
 | |
| 			<artifactId>rxjava-reactive-streams</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>io.searchbox</groupId>
 | |
| 			<artifactId>jest</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.elasticsearch.client</groupId>
 | |
| 			<artifactId>elasticsearch-rest-client</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<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>
 | |
| 		<dependency>
 | |
| 			<groupId>javax.cache</groupId>
 | |
| 			<artifactId>cache-api</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>javax.jms</groupId>
 | |
| 			<artifactId>javax.jms-api</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>net.sf.ehcache</groupId>
 | |
| 			<artifactId>ehcache</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.apache.tomcat.embed</groupId>
 | |
| 			<artifactId>tomcat-embed-core</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.aspectj</groupId>
 | |
| 			<artifactId>aspectjweaver</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.eclipse.jetty</groupId>
 | |
| 			<artifactId>jetty-server</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.elasticsearch</groupId>
 | |
| 			<artifactId>elasticsearch</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.flywaydb</groupId>
 | |
| 			<artifactId>flyway-core</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<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>
 | |
| 		<dependency>
 | |
| 			<groupId>org.hibernate.validator</groupId>
 | |
| 			<artifactId>hibernate-validator</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.infinispan</groupId>
 | |
| 			<artifactId>infinispan-spring4-embedded</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.influxdb</groupId>
 | |
| 			<artifactId>influxdb-java</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.liquibase</groupId>
 | |
| 			<artifactId>liquibase-core</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<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>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework</groupId>
 | |
| 			<artifactId>spring-jdbc</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework</groupId>
 | |
| 			<artifactId>spring-messaging</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework</groupId>
 | |
| 			<artifactId>spring-webflux</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework</groupId>
 | |
| 			<artifactId>spring-web</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework</groupId>
 | |
| 			<artifactId>spring-webmvc</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.amqp</groupId>
 | |
| 			<artifactId>spring-rabbit</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.data</groupId>
 | |
| 			<artifactId>spring-data-cassandra</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.data</groupId>
 | |
| 			<artifactId>spring-data-couchbase</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.data</groupId>
 | |
| 			<artifactId>spring-data-ldap</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.data</groupId>
 | |
| 			<artifactId>spring-data-mongodb</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.data</groupId>
 | |
| 			<artifactId>spring-data-neo4j</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.data</groupId>
 | |
| 			<artifactId>spring-data-redis</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.data</groupId>
 | |
| 			<artifactId>spring-data-rest-webmvc</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.data</groupId>
 | |
| 			<artifactId>spring-data-solr</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 			<exclusions>
 | |
| 				<!-- the version of solr here is incompatible with jackson-xml because
 | |
| 					of an old woodstox -->
 | |
| 				<exclusion>
 | |
| 					<artifactId>wstx-asl</artifactId>
 | |
| 					<groupId>org.codehaus.woodstox</groupId>
 | |
| 				</exclusion>
 | |
| 			</exclusions>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.integration</groupId>
 | |
| 			<artifactId>spring-integration-core</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.security</groupId>
 | |
| 			<artifactId>spring-security-core</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.security</groupId>
 | |
| 			<artifactId>spring-security-web</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.session</groupId>
 | |
| 			<artifactId>spring-session-core</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<!-- Annotation processing -->
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.boot</groupId>
 | |
| 			<artifactId>spring-boot-configuration-processor</artifactId>
 | |
| 			<optional>true</optional>
 | |
| 		</dependency>
 | |
| 		<!-- Test -->
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.boot</groupId>
 | |
| 			<artifactId>spring-boot-test</artifactId>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.boot</groupId>
 | |
| 			<artifactId>spring-boot-test-support</artifactId>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.boot</groupId>
 | |
| 			<artifactId>spring-boot-autoconfigure</artifactId>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>javax.xml.bind</groupId>
 | |
| 			<artifactId>jaxb-api</artifactId>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.apache.logging.log4j</groupId>
 | |
| 			<artifactId>log4j-slf4j-impl</artifactId>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<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>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>io.projectreactor</groupId>
 | |
| 			<artifactId>reactor-test</artifactId>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>io.projectreactor.netty</groupId>
 | |
| 			<artifactId>reactor-netty</artifactId>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.hsqldb</groupId>
 | |
| 			<artifactId>hsqldb</artifactId>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.glassfish.jersey.ext</groupId>
 | |
| 			<artifactId>jersey-spring4</artifactId>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.skyscreamer</groupId>
 | |
| 			<artifactId>jsonassert</artifactId>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 
 | |
| 	</dependencies>
 | |
| </project>
 |