Files
maquan-springboot-template/template/entrance/pom.xml

29 lines
1.1 KiB
XML
Raw Normal View History

2024-10-08 18:01:04 +08:00
<?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>
<groupId>{{ .groupId }}</groupId>
<artifactId>{{ .artifactId }}</artifactId>
<version>{{ .version }}</version>
</parent>
<artifactId>{{ .artifactId }}-entrance</artifactId>
<version>{{ .version }}</version>
<packaging>pom</packaging>
<dependencies>
<dependency>
<groupId>{{ .groupId }}</groupId>
<artifactId>{{ .artifactId }}-common</artifactId>
<version>{{ .version }}</version>
</dependency>
2024-10-11 15:56:51 +08:00
<dependency>
<groupId>com.codvision</groupId>
<artifactId>cvbp-auth-center</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
2024-10-08 18:01:04 +08:00
</dependencies>
<modules>
<module>mq</module>
<module>web</module>
</modules>
</project>