87 lines
2.6 KiB
XML
87 lines
2.6 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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.byhah</groupId>
|
|
<artifactId>cloud-basic</artifactId>
|
|
<version>1.0.2-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>cloud-core</artifactId>
|
|
|
|
<dependencies>
|
|
<!--deploy-->
|
|
<dependency>
|
|
<groupId>com.byhah.deploy</groupId>
|
|
<artifactId>byhah-deploy-basic-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.byhah.deploy</groupId>
|
|
<artifactId>byhah-deploy-basic-validation</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.byhah.deploy</groupId>
|
|
<artifactId>byhah-deploy-basic-jackson</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.byhah.deploy</groupId>
|
|
<artifactId>byhah-deploy-basic-util-web</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-annotation</artifactId>
|
|
</dependency>
|
|
|
|
<!-- aop -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
</dependency>
|
|
|
|
<!-- processor -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
</dependency>
|
|
|
|
<!-- lombok -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</dependency>
|
|
|
|
<!-- jackson-core -->
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-core</artifactId>
|
|
</dependency>
|
|
|
|
<!-- ip2region -->
|
|
<dependency>
|
|
<groupId>org.lionsoul</groupId>
|
|
<artifactId>ip2region</artifactId>
|
|
</dependency>
|
|
|
|
<!-- fastexcel -->
|
|
<dependency>
|
|
<groupId>cn.idev.excel</groupId>
|
|
<artifactId>fastexcel</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.bouncycastle</groupId>
|
|
<artifactId>bcpkix-jdk18on</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |