Update template/entrance/pom.xml

This commit is contained in:
2024-08-13 17:07:51 +08:00
parent d9110e30ae
commit db4cc3ec27

View File

@@ -1,24 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>{{ .groupId }}</groupId> <groupId>{{ .groupId }}</groupId>
<artifactId>{{ .artifactId }}</artifactId> <artifactId>{{ .artifactId }}</artifactId>
<version>{{ .version }}</version>
</parent>
<artifactId>{{ .artifactId }}-entrance</artifactId>
<version>{{ .version }}</version> <version>{{ .version }}</version>
</parent> <packaging>pom</packaging>
<artifactId>{{ .artifactId }}-entrance</artifactId> <dependencies>
<version>{{ .version }}</version> <dependency>
<packaging>pom</packaging> <groupId>{{ .groupId }}</groupId>
<dependencies> <artifactId>{{ .artifactId }}-common</artifactId>
<dependency> <version>{{ .version }}</version>
<groupId>{{ .groupId }}</groupId> </dependency>
<artifactId>{{ .artifactId }}-common</artifactId> </dependencies>
<version>{{ .version }}</version> <modules>
</dependency> <module>mq</module>
</dependencies> <module>web</module>
<modules> </modules>
<module>mq</module>
<module>web</module>
</modules>
</project> </project>