2024-05-09 16:42:44 +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</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>module</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<name>module</name>
|
|
|
|
<url>https://maven.apache.org</url>
|
|
|
|
<modules>
|
|
|
|
<module>module-minio</module>
|
|
|
|
<module>module-mail</module>
|
|
|
|
<module>module-rabbitMQ</module>
|
2024-05-21 17:00:25 +08:00
|
|
|
<module>module-websocket</module>
|
2024-05-24 14:21:00 +08:00
|
|
|
<module>spring-security</module>
|
2024-05-21 21:15:51 +08:00
|
|
|
<module>module-task</module>
|
2024-05-09 16:42:44 +08:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.bunny</groupId>
|
2024-05-21 17:00:25 +08:00
|
|
|
<artifactId>service-utils</artifactId>
|
2024-05-09 16:42:44 +08:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2024-07-27 22:46:47 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
<artifactId>protobuf-java</artifactId>
|
|
|
|
<version>4.27.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
2024-05-09 16:42:44 +08:00
|
|
|
</dependencies>
|
|
|
|
</project>
|