2024-05-10 14:29:47 +08:00
|
|
|
<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>cn.bunny</groupId>
|
|
|
|
<artifactId>bunny-template-mirror-server</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>service</artifactId>
|
2024-05-10 15:38:05 +08:00
|
|
|
<packaging>pom</packaging>
|
2024-05-10 14:29:47 +08:00
|
|
|
<name>service</name>
|
|
|
|
<url>https://maven.apache.org</url>
|
2024-05-10 15:38:05 +08:00
|
|
|
<modules>
|
|
|
|
<module>service-main</module>
|
|
|
|
</modules>
|
2024-05-10 14:29:47 +08:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2024-05-10 15:38:05 +08:00
|
|
|
</properties>
|
2024-05-10 14:29:47 +08:00
|
|
|
|
|
|
|
<dependencies>
|
2024-05-10 15:38:05 +08:00
|
|
|
<!-- 单元测试 -->
|
2024-05-10 14:29:47 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- spring-test -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|