You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.5 KiB
50 lines
1.5 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
|
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.cloud</groupId> |
|
<artifactId>kicc-tool</artifactId> |
|
<version>1.0.0</version> |
|
</parent> |
|
|
|
<artifactId>kicc-common-core</artifactId> |
|
<packaging>jar</packaging> |
|
|
|
<description>kicc 公共工具类核心包</description> |
|
|
|
<!--考虑这个作为一个单模块使用,后续引入依赖需要注意低耦合--> |
|
<dependencies> |
|
<!--hutool--> |
|
<dependency> |
|
<groupId>cn.hutool</groupId> |
|
<artifactId>hutool-all</artifactId> |
|
<version>${hutool.version}</version> |
|
</dependency> |
|
<!--server-api--> |
|
<dependency> |
|
<groupId>javax.servlet</groupId> |
|
<artifactId>javax.servlet-api</artifactId> |
|
</dependency> |
|
<!--hibernate-validator--> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-validation</artifactId> |
|
</dependency> |
|
<!--json模块--> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-json</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-webmvc</artifactId> |
|
<scope>provided</scope> |
|
</dependency> |
|
<!--swagger 依赖支持注解--> |
|
<dependency> |
|
<groupId>io.swagger</groupId> |
|
<artifactId>swagger-annotations</artifactId> |
|
</dependency> |
|
</dependencies> |
|
</project>
|
|
|