Skip to content
一、Activiti-04-源码概述
1. github的开发模式

image-20200624165458979

  • 官方的github地址:https://github.com/Activiti/Activiti

  • fork到自己仓库,再pull到本地

  • 获取Activiti的源码

    shell
    # clone源码
    $ git clone git@github.com:MyRepo/Activiti.git
    # 检出创建新的分支
    $ cd Activiti
    $ git checkout -b activiti6.0 activiti-6.0.0
    # 使用maven编译
    $ mvn clean test-compile
    
    # 问题:
    # 如果git clone的网速实在太慢,切换到国内镜像拉取源代码
    fork到仓库的地址:https://github.com/自己的github/Activiti.git
    # 切换到国内镜像 git clone https://github.com.cnpmjs.org/自己的项目仓库地址
    $ git clone https://github.com.cnpmjs.org/自己的github/Activiti.git
    • 编译完成

      image-20200614232527670

  • 使用开发工具,导入项目。

    • 选中项目中的pom.xml文件即可。

      image-20200614233135534

Released under the MIT License.