From b7a8a25c5d730e61f659058c693be8280bababa7 Mon Sep 17 00:00:00 2001 From: ethan Date: Wed, 2 Apr 2025 17:18:07 +0800 Subject: [PATCH] =?UTF-8?q?build(gateway,=20infra,=20system):=20=E4=BC=98?= =?UTF-8?q?=E5=8C=96=E9=A1=B9=E7=9B=AE=E6=9E=84=E5=BB=BA=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=20-=20=E4=BF=AE=E6=94=B9=20.gitignore=20=E6=96=87=E4=BB=B6?= =?UTF-8?q?=EF=BC=8C=E6=B7=BB=E5=8A=A0=20lib=E7=9B=AE=E5=BD=95=E5=88=B0?= =?UTF-8?q?=E5=BF=BD=E7=95=A5=E5=88=97=E8=A1=A8=20-=20=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=20yudao-gateway=E3=80=81yudao-module-infra-biz=20=E5=92=8C=20y?= =?UTF-8?q?udao-module-system-biz=20=E6=A8=A1=E5=9D=97=E7=9A=84=20pom.xml?= =?UTF-8?q?=20=E6=96=87=E4=BB=B6=20=20=20-=20=E6=B7=BB=E5=8A=A0=20maven-ja?= =?UTF-8?q?r-plugin=20=E9=85=8D=E7=BD=AE=EF=BC=8C=E6=8E=92=E9=99=A4?= =?UTF-8?q?=E8=B5=84=E6=BA=90=E6=96=87=E4=BB=B6=E6=89=93=E5=8C=85=20-=20?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20maven-resources-plugin=20=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=EF=BC=8C=E5=A4=8D=E5=88=B6=E8=B5=84=E6=BA=90=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E5=88=B0=E6=8C=87=E5=AE=9A=E7=9B=AE=E5=BD=95=20=20=20?= =?UTF-8?q?-=20=E6=B3=A8=E9=87=8A=E6=8E=89=20maven-dependency-plugin=20?= =?UTF-8?q?=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + yudao-gateway/pom.xml | 44 +++++++++++ .../yudao-module-infra-biz/pom.xml | 76 ++++++++++++++++++- .../yudao-module-system-biz/pom.xml | 76 ++++++++++++++++++- 4 files changed, 193 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index e55eb64b5..2a090856e 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ # 查看更多 .gitignore 配置 -> https://help.github.com/articles/ignoring-files/ target/ +lib/ !.mvn/wrapper/maven-wrapper.jar .flattened-pom.xml diff --git a/yudao-gateway/pom.xml b/yudao-gateway/pom.xml index 76be121ad..39f740e3f 100644 --- a/yudao-gateway/pom.xml +++ b/yudao-gateway/pom.xml @@ -94,6 +94,50 @@ + + + org.apache.maven.plugins + maven-jar-plugin + + + *.** + */*.xml + + + + ./resources/ + + + + + + + maven-resources-plugin + + + copy-resources + package + + copy-resources + + + + + src/main/resources + + *.** + + + + ${project.build.directory}/resources + + + + + diff --git a/yudao-module-infra/yudao-module-infra-biz/pom.xml b/yudao-module-infra/yudao-module-infra-biz/pom.xml index dc25849a9..a0fb14991 100644 --- a/yudao-module-infra/yudao-module-infra-biz/pom.xml +++ b/yudao-module-infra/yudao-module-infra-biz/pom.xml @@ -152,19 +152,91 @@ ${project.artifactId} - + org.springframework.boot spring-boot-maven-plugin ${spring.boot.version} + + ZIP + + + non-exists + non-exists + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + *.** + */*.xml + + + + true + lib/ + false + cn.iocoder.yudao.module.infra.InfraServerApplication + + + ./resources/ + + + ${project.build.directory} + + + + + maven-resources-plugin + copy-resources + package - repackage + copy-resources + + + + src/main/resources + + *.** + + + + ${project.build.directory}/resources + + + diff --git a/yudao-module-system/yudao-module-system-biz/pom.xml b/yudao-module-system/yudao-module-system-biz/pom.xml index 8b1002e27..df22096c1 100644 --- a/yudao-module-system/yudao-module-system-biz/pom.xml +++ b/yudao-module-system/yudao-module-system-biz/pom.xml @@ -153,19 +153,91 @@ ${project.artifactId} - + org.springframework.boot spring-boot-maven-plugin ${spring.boot.version} + + ZIP + + + non-exists + non-exists + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + *.** + */*.xml + + + + true + lib/ + false + cn.iocoder.yudao.module.system.SystemServerApplication + + + ./resources/ + + + ${project.build.directory} + + + + + maven-resources-plugin + copy-resources + package - repackage + copy-resources + + + + src/main/resources + + *.** + + + + ${project.build.directory}/resources + + +