roses/kernel-o-monitor/monitor-sdk-prometheus/pom.xml

43 lines
1.4 KiB
XML
Raw Normal View History

2021-03-05 09:51:18 +00:00
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>kernel-o-monitor</artifactId>
<groupId>cn.stylefeng.roses</groupId>
<version>7.0.4</version>
2021-03-05 09:51:18 +00:00
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>monitor-sdk-prometheus</artifactId>
<dependencies>
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>monitor-api</artifactId>
2021-06-05 04:07:45 +00:00
<version>${roses.version}</version>
2021-03-05 09:51:18 +00:00
<scope>compile</scope>
</dependency>
<!-- actuator monitor -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- prometheus meter -->
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-prometheus</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</dependency>
</dependencies>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
</project>