mirror of
https://github.com/yin5980280/easy.git
synced 2026-05-16 19:39:31 +08:00
39 lines
1.3 KiB
XML
39 lines
1.3 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>easy-parent</artifactId>
|
|
<groupId>cn.org.easysite</groupId>
|
|
<version>${revision}</version>
|
|
<relativePath>../easy-parent</relativePath>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>easy-spring-boot</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cn.org.easysite</groupId>
|
|
<artifactId>easy-framework</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.org.easysite</groupId>
|
|
<artifactId>easy-spring-boot-starter-swagger</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.aspectj</groupId>
|
|
<artifactId>aspectjweaver</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|