31 lines
1013 B
XML
31 lines
1013 B
XML
<?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.lanyuanxiaoyao</groupId>
|
|
<artifactId>spring-boot-service-template</artifactId>
|
|
<version>1.1.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>spring-boot-service-template-database-common</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.lanyuanxiaoyao</groupId>
|
|
<artifactId>spring-boot-service-template-common</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.mapstruct</groupId>
|
|
<artifactId>mapstruct</artifactId>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.gavlyukovskiy</groupId>
|
|
<artifactId>p6spy-spring-boot-starter</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |