2016-04-05 17:50:45 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2018-07-10 12:29:54 +00: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">
|
2016-04-05 17:50:45 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2016-04-14 16:09:18 +02:00
|
|
|
<groupId>io.spring.initializr</groupId>
|
2016-04-05 17:50:45 +02:00
|
|
|
<artifactId>initializr</artifactId>
|
2018-07-10 12:29:54 +00:00
|
|
|
<version>0.7.0.BUILD-SNAPSHOT</version>
|
2016-04-05 17:50:45 +02:00
|
|
|
</parent>
|
|
|
|
<artifactId>initializr-actuator</artifactId>
|
|
|
|
<name>Spring Initializr :: Actuator</name>
|
|
|
|
|
2018-04-13 12:14:19 -07:00
|
|
|
<properties>
|
|
|
|
<main.basedir>${basedir}/..</main.basedir>
|
|
|
|
</properties>
|
|
|
|
|
2016-04-05 17:50:45 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2016-04-14 16:09:18 +02:00
|
|
|
<groupId>io.spring.initializr</groupId>
|
2016-04-05 17:50:45 +02:00
|
|
|
<artifactId>initializr-generator</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2018-02-27 14:43:53 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
|
</dependency>
|
2016-04-05 17:50:45 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-actuator</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.retry</groupId>
|
|
|
|
<artifactId>spring-retry</artifactId>
|
|
|
|
</dependency>
|
2018-04-11 22:04:20 -07:00
|
|
|
|
2018-02-27 14:43:53 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-actuator-autoconfigure</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.micrometer</groupId>
|
|
|
|
<artifactId>micrometer-core</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2016-04-05 17:50:45 +02:00
|
|
|
|
2017-02-10 14:49:34 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
2016-04-05 17:50:45 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2016-04-14 16:09:18 +02:00
|
|
|
<groupId>io.spring.initializr</groupId>
|
2016-04-05 17:50:45 +02:00
|
|
|
<artifactId>initializr-generator</artifactId>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2016-04-14 16:09:18 +02:00
|
|
|
<groupId>io.spring.initializr</groupId>
|
2016-04-05 17:50:45 +02:00
|
|
|
<artifactId>initializr-web</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2016-04-14 16:09:18 +02:00
|
|
|
<groupId>io.spring.initializr</groupId>
|
2016-04-05 17:50:45 +02:00
|
|
|
<artifactId>initializr-web</artifactId>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.skyscreamer</groupId>
|
|
|
|
<artifactId>jsonassert</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
|
|
<artifactId>json-path</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-09-26 16:13:35 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.restdocs</groupId>
|
|
|
|
<artifactId>spring-restdocs-mockmvc</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-04-05 17:50:45 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2017-01-27 12:52:11 +00:00
|
|
|
</project>
|