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

25 lines
862 B
XML
Raw Normal View History

2024-08-06 19:17:39 +08:00
<?xml version="1.0" encoding="UTF-8"?>
2024-08-05 16:14:01 +08:00
2024-08-06 19:17:39 +08:00
<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>
2024-08-07 16:17:22 +08:00
<version>{{ .version }}</version>
2024-08-06 19:17:39 +08:00
</parent>
2024-08-05 16:14:01 +08:00
<artifactId>{{ .artifactId }}-entrance</artifactId>
<version>{{ .version }}</version>
2024-08-06 19:17:39 +08:00
<packaging>pom</packaging>
<dependencies>
<dependency>
<groupId>{{ .groupId }}</groupId>
2024-08-05 16:14:01 +08:00
<artifactId>{{ .artifactId }}-common</artifactId>
<version>{{ .version }}</version>
2024-08-06 19:17:39 +08:00
</dependency>
</dependencies>
<modules>
<module>mq</module>
<module>web</module>
</modules>
2024-08-05 16:14:01 +08:00
</project>