2024-10-08 16:42:55 +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>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>{{ .groupId }}</groupId>
|
|
|
|
|
<artifactId>{{ .parentArtifactId }}-common</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>{{ .groupId }}</groupId>
|
|
|
|
|
<artifactId>{{ .artifactId }}-persist</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>{{ .groupId }}</groupId>
|
|
|
|
|
<artifactId>{{ .artifactId }}-common</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
</dependency>
|
2025-01-17 10:50:27 +08:00
|
|
|
{{- if eq .dbType "dm" }}
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>dm</groupId>
|
|
|
|
|
<artifactId>DmJdbcDriver</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.dameng</groupId>
|
|
|
|
|
<artifactId>DmDialect-for-hibernate5.6</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
{{- end }}
|
2024-10-08 16:42:55 +08:00
|
|
|
</dependencies>
|
|
|
|
|
</project>
|