2016-04-05 23:50:45 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-01-24 10:34:09 +08:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2019-08-18 20:07:02 +08:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2016-04-05 23:50:45 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2016-04-14 22:09:18 +08:00
|
|
|
<groupId>io.spring.initializr</groupId>
|
2019-08-15 13:53:46 +08:00
|
|
|
<artifactId>initializr-parent</artifactId>
|
2019-01-31 00:13:17 +08:00
|
|
|
<version>${revision}</version>
|
2019-08-15 13:53:46 +08:00
|
|
|
<relativePath>../initializr-parent</relativePath>
|
2016-04-05 23:50:45 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>initializr-actuator</artifactId>
|
|
|
|
<name>Spring Initializr :: Actuator</name>
|
|
|
|
|
2018-04-14 03:14:19 +08:00
|
|
|
<properties>
|
|
|
|
<main.basedir>${basedir}/..</main.basedir>
|
|
|
|
</properties>
|
2019-10-06 01:32:42 +08:00
|
|
|
<scm>
|
|
|
|
<url>${git.url}</url>
|
|
|
|
<connection>${git.connection}</connection>
|
|
|
|
<developerConnection>${git.developerConnection}</developerConnection>
|
|
|
|
</scm>
|
2018-04-14 03:14:19 +08:00
|
|
|
|
2016-04-05 23:50:45 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2016-04-14 22:09:18 +08:00
|
|
|
<groupId>io.spring.initializr</groupId>
|
2016-04-05 23:50:45 +08:00
|
|
|
<artifactId>initializr-generator</artifactId>
|
|
|
|
</dependency>
|
2018-11-21 22:20:08 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.spring.initializr</groupId>
|
|
|
|
<artifactId>initializr-web</artifactId>
|
|
|
|
</dependency>
|
2018-02-27 21:43:53 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
|
</dependency>
|
2016-04-05 23:50:45 +08: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-12 13:04:20 +08:00
|
|
|
|
2018-02-27 21:43:53 +08: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 23:50:45 +08:00
|
|
|
|
2017-02-10 21:49:34 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2019-10-16 17:31:07 +08:00
|
|
|
|
2016-04-05 23:50:45 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-10-16 17:37:21 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.spring.initializr</groupId>
|
|
|
|
<artifactId>initializr-generator-spring</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-04-05 23:50:45 +08:00
|
|
|
<dependency>
|
2016-04-14 22:09:18 +08:00
|
|
|
<groupId>io.spring.initializr</groupId>
|
2019-08-20 21:24:13 +08:00
|
|
|
<artifactId>initializr-generator-test</artifactId>
|
2019-02-07 19:28:12 +08:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-04-05 23:50:45 +08:00
|
|
|
<dependency>
|
2016-04-14 22:09:18 +08:00
|
|
|
<groupId>io.spring.initializr</groupId>
|
2016-04-05 23:50:45 +08: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 23:13:35 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.restdocs</groupId>
|
|
|
|
<artifactId>spring-restdocs-mockmvc</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-04-05 23:50:45 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2017-01-27 20:52:11 +08:00
|
|
|
</project>
|