工程导入
matevip 2021-5-31 小于 1 分钟
# 一、mate-kernel导入
# 1.1 基础类库的导入
https://gitee.com/mateplus/mate-kernel.git (opens new window)
点击clone按钮,则自动导入工程基础类库需要install到本地,以下描述两种方式执行。
# 1.2 图形化界面操作
切记安装的时候一定要跳过测试,否则在此阶段可能会因为环境未准备好而测试不通过。
# 1.3 命令行操作
mvn clean install -Dmaven.test.skip=true
1
# 二、matecloud-plus导入
# 2.1 商业版项目地址:
https://gitee.com/mateplus/matecloud-plus (opens new window)
跟mate-kernel的导入方式一样,但不需要install,等依赖安装完成后。会出现如下的界面
选择:show run configrations in Services 后,则出现
# 三、artemis-plus导入
# 3.1 前端项目地址:
https://gitee.com/mateplus/artemis-plus.git (opens new window)
以下采用命令行的方式操作
# 3.2 进入项目
cd artemis-plus
1
# 3.3 安装依赖
npm i
# 或者
yarn install
1
2
3
2
3
# 3.4 项目启动
npm run serve
# 或者
yarn serve
1
2
3
2
3