68 lines
2.0 KiB
XML
68 lines
2.0 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">
|
|
<parent>
|
|
<artifactId>ballcat-common</artifactId>
|
|
<groupId>com.hccake</groupId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>ballcat-common-conf</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.hccake</groupId>
|
|
<artifactId>ballcat-common-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.hccake</groupId>
|
|
<artifactId>ballcat-extend-mybatis-plus</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.hccake</groupId>
|
|
<artifactId>ballcat-extend-dingtalk</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.hccake</groupId>
|
|
<artifactId>ballcat-spring-boot-starter-mail</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!--mybatis plus-->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-extension</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-webmvc</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-tx</artifactId>
|
|
</dependency>
|
|
<!--validation校验-->
|
|
<dependency>
|
|
<groupId>javax.validation</groupId>
|
|
<artifactId>validation-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hibernate.validator</groupId>
|
|
<artifactId>hibernate-validator</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
|
|
</project> |