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.
74 lines
1.9 KiB
74 lines
1.9 KiB
<?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>
|
|
<artifactId>common</artifactId>
|
|
<groupId>com.zhengqing</groupId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>core</artifactId>
|
|
|
|
<name>${project.artifactId}</name>
|
|
<version>${revision}</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.zhengqing</groupId>
|
|
<artifactId>base</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.zhengqing</groupId>
|
|
<artifactId>auth</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.zhengqing</groupId>
|
|
<artifactId>log</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.zhengqing</groupId>
|
|
<artifactId>swagger</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.zhengqing</groupId>
|
|
<artifactId>web</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.zhengqing</groupId>
|
|
<artifactId>db</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.zhengqing</groupId>
|
|
<artifactId>redis</artifactId>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>com.zhengqing</groupId>
|
|
<artifactId>file</artifactId>
|
|
</dependency>
|
|
|
|
|
|
<!-- AOP依赖 -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
<!-- <artifactId>spring-boot-starter-aop</artifactId>-->
|
|
<!-- </dependency>-->
|
|
|
|
|
|
</dependencies>
|
|
|
|
</project>
|
|
|