58 lines
1.9 KiB
XML
58 lines
1.9 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.cxx</groupId>
|
|
<artifactId>sweet-hut-service</artifactId>
|
|
<version>2.0.0</version>
|
|
</parent>
|
|
|
|
<artifactId>admin-service</artifactId>
|
|
<version>2.0.0</version>
|
|
|
|
<properties>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.cxx</groupId>
|
|
<artifactId>common</artifactId>
|
|
<version>2.0.0</version>
|
|
</dependency>
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.checkerframework</groupId>-->
|
|
<!-- <artifactId>checker-qual</artifactId>-->
|
|
<!-- <version>2.0.0</version>-->
|
|
<!-- <scope>compile</scope>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- 服务器监控 -->
|
|
<dependency>
|
|
<groupId>com.github.oshi</groupId>
|
|
<artifactId>oshi-core</artifactId>
|
|
<version>6.4.0</version>
|
|
</dependency>
|
|
|
|
<!-- influxdb -->
|
|
<dependency>
|
|
<groupId>com.influxdb</groupId>
|
|
<artifactId>influxdb-client-java</artifactId>
|
|
<version>7.2.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<!-- <build>-->
|
|
<!-- <plugins>-->
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
<!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
|
|
<!-- </plugin>-->
|
|
<!-- </plugins>-->
|
|
<!-- </build>-->
|
|
</project> |