Files
libawall-module-template/template/manager/pom.xml

34 lines
1.2 KiB
XML
Raw Normal View History

2024-08-06 19:54:58 +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 }}-manager</artifactId>
<version>{{ .version }}</version>
<dependencies>
2024-08-18 17:51:29 +08:00
<dependency>
<groupId>{{ .groupId }}</groupId>
<artifactId>{{ .parentArtifactId }}-common</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
2024-08-06 19:54:58 +08:00
<dependency>
<groupId>{{ .groupId }}</groupId>
<artifactId>{{ .artifactId }}-persist</artifactId>
</dependency>
<dependency>
<groupId>{{ .groupId }}</groupId>
<artifactId>{{ .artifactId }}-common</artifactId>
</dependency>
2024-08-16 19:16:38 +08:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
2024-08-06 19:54:58 +08:00
</dependencies>
</project>