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>
|
|
|
|
|
|
|
|
<artifactId>kenaito-config-service</artifactId>
|
|
|
|
<name>子系统-配置管理中心</name>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
|
|
|
|
<java.version>11</java.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.odboy</groupId>
|
|
|
|
<artifactId>kenaito-system</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.odboy</groupId>
|
2024-12-03 23:12:15 +08:00
|
|
|
<artifactId>kenaito-config-common</artifactId>
|
2024-12-03 19:29:26 +08:00
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 文字转拼音 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.belerweb</groupId>
|
|
|
|
<artifactId>pinyin4j</artifactId>
|
|
|
|
<version>2.5.1</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<!-- 打包 -->
|
|
|
|
<build>
|
|
|
|
<finalName>kenaito-config-service</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<!-- 跳过单元测试 -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|