1 版本分支2.10
2 JDK 21 Maven 3.9.9 nodejs 16.15.0 npm 8.5.5
3 完全按照安装手册进行的 除了把代码里的服务端口全部改成8200了
4 mvn clean package -Pstandalone -U -Dmaven.test.skip=true 运行这个报错的
试试以下处理方式
注释掉 core-frontend 下的pom文件中的以下内容:
<!--前端组件有更新需要放开-->
<!--<execution>
<id>npm install</id>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>install</arguments>
</configuration>
</execution>
<execution>
<id>npm run build</id>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>run build:distributed</arguments>
</configuration>
</execution>-->
删除core-frontend下的node-models
然后在core-frontend 下执行
npm i
npm run build:distributed
如果有报错,百度对应报错修改
如果没有,再切换到core 目录打包