学习篇-Activiti-04-源码概述

文章目录

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

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

学习篇-Activiti-04-源码概述_第1张图片

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

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

  • 获取Activiti的源码

    # clone源码
    $ git clone [email protected]: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
    
    • 编译完成 学习篇-Activiti-04-源码概述_第2张图片
  • 使用开发工具,导入项目。

    • 选中项目中的pom.xml文件即可。
      学习篇-Activiti-04-源码概述_第3张图片

你可能感兴趣的:(activiti)