summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorfangshunjian <[email protected]>2021-03-23 12:47:46 +0800
committerfangshunjian <[email protected]>2021-03-23 12:47:46 +0800
commitc4a7cbcd8a8828c08f00c253d843fa1c1e51de24 (patch)
tree856e21bc9541268b44a5ab5dee2c5f9c5818dbf2 /pom.xml
parent38200b18771c39465e8395c04833dd19297aa0a5 (diff)
feat: 初始化导入HEAD2.0-kz-2021.06.22master
项目初始化
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml64
1 files changed, 64 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..29109b8
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,64 @@
+<?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-starter-parent</artifactId>
+ <version>2.4.4</version>
+ <relativePath /> <!-- lookup parent from repository -->
+ </parent>
+ <groupId>net.geedge</groupId>
+ <artifactId>confagent</artifactId>
+ <version>2.0</version>
+ <name>confagent</name>
+ <description>nezha prometheus config sync agent</description>
+ <properties>
+ <java.version>1.8</java.version>
+ </properties>
+ <dependencies>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-web</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.projectlombok</groupId>
+ <artifactId>lombok</artifactId>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>cn.hutool</groupId>
+ <artifactId>hutool-all</artifactId>
+ <version>5.5.2</version>
+ </dependency>
+ <dependency>
+ <groupId>org.yaml</groupId>
+ <artifactId>snakeyaml</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-test</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-maven-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <exclude>
+ <groupId>org.projectlombok</groupId>
+ <artifactId>lombok</artifactId>
+ </exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>