From 14c90c288ecc943749a53edd6fa2b948714225ab Mon Sep 17 00:00:00 2001 From: oyo Date: Thu, 21 May 2026 16:35:42 +0800 Subject: [PATCH] =?UTF-8?q?facade=E6=94=B9=E4=B8=BAclient=EF=BC=8C?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0public-api?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- template/entrance/pom.xml | 3 ++- template/pom.xml | 7 +++++-- template/public_api/api/pom.xml | 20 ++++++++++++++++++++ template/public_api/pom.xml | 19 +++++++++++++++++++ template/public_api/types/pom.xml | 12 ++++++++++++ template/public_service/pom.xml | 8 ++++++++ 6 files changed, 66 insertions(+), 3 deletions(-) create mode 100644 template/public_api/api/pom.xml create mode 100644 template/public_api/pom.xml create mode 100644 template/public_api/types/pom.xml diff --git a/template/entrance/pom.xml b/template/entrance/pom.xml index 5a229eb..72c6d88 100644 --- a/template/entrance/pom.xml +++ b/template/entrance/pom.xml @@ -17,6 +17,7 @@ + rpc web - \ No newline at end of file + diff --git a/template/pom.xml b/template/pom.xml index 2c23bd3..5455edd 100644 --- a/template/pom.xml +++ b/template/pom.xml @@ -306,9 +306,12 @@ + public_api/types + public_api/api + public_service + modules entrance common - public_service client - \ No newline at end of file + diff --git a/template/public_api/api/pom.xml b/template/public_api/api/pom.xml new file mode 100644 index 0000000..e797d21 --- /dev/null +++ b/template/public_api/api/pom.xml @@ -0,0 +1,20 @@ + + + 4.0.0 + + + {{ .groupId }} + {{ .artifactId }}-public-api + ${revision} + ../pom.xml + + {{ .artifactId }}-public-api-api + + + + {{ .groupId }} + {{ .artifactId }}-public-api-types + ${revision} + + + diff --git a/template/public_api/pom.xml b/template/public_api/pom.xml new file mode 100644 index 0000000..0f3d664 --- /dev/null +++ b/template/public_api/pom.xml @@ -0,0 +1,19 @@ + + + 4.0.0 + + + {{ .groupId }} + {{ .artifactId }} + ${revision} + ../pom.xml + + {{ .artifactId }}-public-api + pom + + + types + api + jar + + diff --git a/template/public_api/types/pom.xml b/template/public_api/types/pom.xml new file mode 100644 index 0000000..e7f70ee --- /dev/null +++ b/template/public_api/types/pom.xml @@ -0,0 +1,12 @@ + + + 4.0.0 + + + {{ .groupId }} + {{ .artifactId }}-public-api + ${revision} + ../pom.xml + + {{ .artifactId }}-public-api-types + diff --git a/template/public_service/pom.xml b/template/public_service/pom.xml index 1b97851..02c1fd7 100644 --- a/template/public_service/pom.xml +++ b/template/public_service/pom.xml @@ -8,4 +8,12 @@ ${revision} {{ .artifactId }}-public-service + + + + {{ .groupId }} + {{ .artifactId }}-public-api-types + ${revision} + +