kenaito-config/kenaito-config-core/pom.xml

58 lines
1.9 KiB
XML
Raw Normal View History

2024-12-03 19:29:26 +08: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>kenaito-config</artifactId>
<groupId>cn.odboy</groupId>
<version>1.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<properties>
2024-12-03 21:49:56 +08:00
<netty.version>4.1.115.Final</netty.version>
<protostuff.version>1.3.0</protostuff.version>
2024-12-03 19:29:26 +08:00
<hutool.version>5.8.33</hutool.version>
</properties>
<artifactId>kenaito-config-core</artifactId>
<name>子模块-配置中心sdk</name>
<dependencies>
2024-12-03 23:12:15 +08:00
<dependency>
<groupId>cn.odboy</groupId>
<artifactId>kenaito-config-common</artifactId>
<version>1.0</version>
</dependency>
2024-12-03 21:49:56 +08:00
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>${netty.version}</version>
</dependency>
<!-- protostuff -->
<dependency>
<groupId>com.dyuproject.protostuff</groupId>
<artifactId>protostuff-api</artifactId>
<version>${protostuff.version}</version>
</dependency>
<dependency>
<groupId>com.dyuproject.protostuff</groupId>
<artifactId>protostuff-core</artifactId>
<version>${protostuff.version}</version>
</dependency>
<dependency>
<groupId>com.dyuproject.protostuff</groupId>
<artifactId>protostuff-runtime</artifactId>
<version>${protostuff.version}</version>
</dependency>
<!-- 工具包 -->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool.version}</version>
</dependency>
2024-12-03 19:29:26 +08:00
</dependencies>
</project>