Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d99f3e4e49 | |||
| 752a2f6c6f | |||
| c44587b243 | |||
| cab08f7bf0 | |||
| 4fb035b32c | |||
| 9feabc419c | |||
| 4ea853589d |
@@ -16,5 +16,6 @@
|
||||
</dependencies>
|
||||
<modules>
|
||||
<module>web</module>
|
||||
<module>rpc</module>
|
||||
</modules>
|
||||
</project>
|
||||
|
||||
30
template/entrance/rpc/pom.xml
Normal file
30
template/entrance/rpc/pom.xml
Normal file
@@ -0,0 +1,30 @@
|
||||
<?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>
|
||||
|
||||
{{ if hasKey . "microserviceFrameworkType" }}
|
||||
<dependency>
|
||||
<groupId>{{ .groupId }}</groupId>
|
||||
<artifactId>{{ .parentArtifactId }}-remote-contract-interfaces</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
{{ end }}
|
||||
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
@@ -17,6 +17,11 @@
|
||||
<artifactId>{{ .parentArtifactId }}-common</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>{{ .groupId }}</groupId>
|
||||
<artifactId>{{ .parentArtifactId }}-client</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>{{ .groupId }}</groupId>
|
||||
<artifactId>{{ .artifactId }}-common</artifactId>
|
||||
@@ -45,6 +50,18 @@
|
||||
<artifactId>{{ .parentArtifactId }}-public-service</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
{{ if hasKey . "microserviceFrameworkType" }}
|
||||
<dependency>
|
||||
<groupId>{{ .groupId }}</groupId>
|
||||
<artifactId>{{ .parentArtifactId }}-remote-contract-types</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>{{ .groupId }}</groupId>
|
||||
<artifactId>{{ .parentArtifactId }}-client</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
{{ end }}
|
||||
<dependency>
|
||||
<groupId>{{ .groupId }}</groupId>
|
||||
<artifactId>{{ .parentArtifactId }}-common</artifactId>
|
||||
|
||||
Reference in New Issue
Block a user