一、后端

1、修改根目录下的 pom 文件

1、修改 properties

1
2
<revision>2.0.0-jdk8-mydw-SNAPSHOT</revision>
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>

2、修改 modules

1
2
<!-- Server 主项目 -->
<module>muyao-demo-web</module>

2、修改 yudao-dependencies 目录下的 pom 文件

1、修改 properties

1
<revision>2.0.0-jdk8-mydw-SNAPSHOT</revision>

2、添加 distributionManagement

1
2
3
4
5
6
7
8
9
10
<distributionManagement>
<repository>
<id>rdc-releases</id>
<url>https://packages.aliyun.com/maven/repository/2405382-release-TBsKGw/</url>
</repository>
<snapshotRepository>
<id>rdc-snapshots</id>
<url>https://packages.aliyun.com/maven/repository/2405382-snapshot-7gN7rh/</url>
</snapshotRepository>
</distributionManagement>

二、前端

使用: https://gitee.com/rambler-kieran/yudao-ui-admin-vue3

1、修改 package.json

添加 uat 命令

1
"build:uat": "node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build --mode uat",