1 Star 0 Fork 0

Djk/activiti-demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 2.16 KB
一键复制 编辑 原始数据 按行查看 历史
Djk 提交于 2019-04-08 22:58 . initi
plugins {
id 'org.springframework.boot' version '2.1.0.RELEASE'
id 'java'
}
apply plugin: 'io.spring.dependency-management'
group = 'com.dengjk'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
maven { url "http://maven.aliyun.com/nexus/content/groups/public" }
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
maven { url "http://repo.spring.io/plugins-release" }
mavenCentral()
}
dependencies {
compile('org.springframework.boot:spring-boot-starter-web')
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test
testCompile group: 'org.springframework.boot', name: 'spring-boot-starter-test'
/**swagger2*/
compile group: 'io.springfox', name: 'springfox-swagger2', version: '2.8.0'
compile group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.8.0'
/**常用工具*/
compile group: 'org.projectlombok', name: 'lombok', version: '1.16.20'
compile group: 'commons-lang', name: 'commons-lang', version: '2.6'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.8.1'
compile group: 'commons-beanutils', name: 'commons-beanutils', version: '1.9.3'
compile group: 'com.alibaba', name: 'fastjson', version: '1.2.47'
compile group: 'commons-io', name: 'commons-io', version: '2.6'
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.1'
/**mybatis相关*/
compile group: 'mysql', name: 'mysql-connector-java', version: '5.1.26'
compile group: 'org.mybatis.spring.boot', name: 'mybatis-spring-boot-starter', version: '1.3.2'
compile group: 'tk.mybatis', name: 'mapper-spring-boot-starter', version: '2.0.3'
compile group: 'com.github.pagehelper', name: 'pagehelper-spring-boot-starter', version: '1.2.5'
compile group: 'org.mybatis.generator', name: 'mybatis-generator-core', version: '1.3.5'
/**阿里druid*/
compile group: 'com.alibaba', name: 'druid-spring-boot-starter', version: '1.1.10'
/**AOP*/
compile group: 'org.springframework.boot', name: 'spring-boot-starter-aop'
compile 'org.activiti:activiti-spring-boot-starter:7.0.0.Beta2'
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/dengjiakang/activiti-demo.git
git@gitee.com:dengjiakang/activiti-demo.git
dengjiakang
activiti-demo
activiti-demo
master

搜索帮助