2026-05-11 12:00:51 +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 }}-entrance</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>{{ .artifactId }}-entrance-rpc</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>{{ .groupId }}</groupId>
|
|
|
|
|
<artifactId>{{ .artifactId }}-service</artifactId>
|
|
|
|
|
</dependency>
|
2026-06-16 18:43:30 +08:00
|
|
|
|
|
|
|
|
{{ if hasKey . "microserviceFrameworkType" }}
|
2026-05-27 19:01:48 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>{{ .groupId }}</groupId>
|
2026-06-01 10:54:11 +08:00
|
|
|
<artifactId>{{ .parentArtifactId }}-remote-contract-interfaces</artifactId>
|
2026-05-27 19:01:48 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
2026-06-16 18:43:30 +08:00
|
|
|
{{ end }}
|
2026-06-01 10:54:11 +08:00
|
|
|
|
2026-05-11 12:00:51 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|