1 Star 0 Fork 84

tianling_xu/admin-manage

forked from 静远/admin-manage 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 2.62 KB
一键复制 编辑 原始数据 按行查看 历史
静远 提交于 2017-01-08 23:40 . update
//sourceCompatibility = 1.8
//targetCompatibility = 1.8
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
buildscript {
def springbootVersion = '1.4.3.RELEASE'
repositories {
jcenter()
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
}
dependencies {
//加入这个可以达到统一管理springboot的版本的功能,类似maven中的dependence management
//The spring-boot-gradle-plugin is also available and provides tasks to create executable jars and run projects from source. It also provides dependency management that, among other capabilities, allows you to omit the version number for any dependencies that are managed by Spring Boot:
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springbootVersion}")
}
}
repositories {
jcenter()
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
}
dependencies {
testCompile("org.springframework.boot:spring-boot-starter-test")
compile 'org.aspectj:aspectjrt:1.7.3'
compile 'org.aspectj:aspectjweaver:1.7.3'
compile 'mysql:mysql-connector-java:5.1.28'
compile("org.springframework.boot:spring-boot-starter-jdbc")
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-thymeleaf")
compile("org.springframework.boot:spring-boot-starter-cache")
compile 'org.springframework.boot:spring-boot-starter-security'
compile("de.codecentric:spring-boot-admin-server:1.4.3")
compile("de.codecentric:spring-boot-admin-server-ui:1.4.3")
compile("org.springframework.boot:spring-boot-devtools")
compile 'org.springframework.session:spring-session:1.2.2.RELEASE'
compile 'com.hazelcast:hazelcast:3.7.2'
compile 'com.google.zxing:core:3.2.0'
compile 'com.google.zxing:javase:3.2.0'
compile 'com.alibaba:druid:1.0.25'
compile 'com.alibaba:fastjson:1.2.17'
compile 'org.apache.commons:commons-lang3:3.4'
compile 'commons-codec:commons-codec:1.10'
compile group: 'commons-beanutils', name: 'commons-beanutils', version: '1.9.3'
compile 'com.google.guava:guava:19.0'
compile 'com.qiniu:qiniu-java-sdk:7.2.+'
compile 'org.thymeleaf:thymeleaf:3.0.2.RELEASE'
compile 'org.thymeleaf:thymeleaf-spring4:3.0.2.RELEASE'
compile 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:2.0.3'
compile files('src/main/lib/bumishi-toolbox-1.0.jar')
}
springBoot {
mainClass = "org.bumishi.admin.Application"
}
bootRun {
addResources = true
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/tianling_xu/admin-manage.git
git@gitee.com:tianling_xu/admin-manage.git
tianling_xu
admin-manage
admin-manage
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385