1 Star 0 Fork 1

妖刀/jcalaBlog

forked from linzb/jcalaBlog 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 2.60 KB
一键复制 编辑 原始数据 按行查看 历史
buildscript {
ext {
springBootPluginVersion = '1.4.1.RELEASE'
springBootVersion = '1.4.1.RELEASE'
mybatisSpringVersion='1.1.1'
ehcacheVersion='2.10.2.2.21'
dockerPluginVersion='1.2'
}
repositories {
mavenLocal()
mavenCentral()
maven { url "http://repo.spring.io/release" }
maven { url "http://repo.spring.io/milestone" }
maven { url "http://repo.spring.io/snapshot" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootPluginVersion}")
classpath "se.transmode.gradle:gradle-docker:${dockerPluginVersion}"
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'
apply plugin: 'docker'
sourceCompatibility = 1.7
targetCompatibility = 1.7
compileJava.dependsOn(processResources)
jar {
baseName = 'jcalaBlog'
version = '1.0.0'
}
configurations {
compile.exclude module: "spring-boot-starter-tomcat"
compile.exclude module: "velocity-tools"
compile.exclude module: "undertow-websockets-jsr"
compile.exclude group: 'org.apache.tomcat.embed'
compile.exclude group: 'org.apache.tomcat'
compile.exclude group: 'org.apache.struts'
compile.exclude group: 'com.fasterxml'
compile.exclude group: 'org.hibernate'
compile.exclude group: 'org.glassfish'
compile.exclude group: 'dom4j'
compile.exclude group: 'c3p0'
}
bootRun {
systemProperties = System.properties
addResources = true
}
repositories {
mavenLocal()
mavenCentral()
maven { url "http://repo.spring.io/release" }
maven { url "http://repo.spring.io/milestone" }
maven { url "http://repo.spring.io/snapshot" }
}
dependencies {
compile ("org.springframework.boot:spring-boot-starter-web:${springBootVersion}"){
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
}
compile "org.springframework.boot:spring-boot-starter-undertow:${springBootVersion}"
compile "org.springframework.boot:spring-boot-starter-velocity:${springBootVersion}"
compile "org.springframework.boot:spring-boot-starter-test:${springBootVersion}"
//--------------------数据库驱动----------------------------
compile 'mysql:mysql-connector-java:5.1.38'
//-------------------数据库连接池---------------------------
compile 'com.zaxxer:HikariCP:2.5.1'
//----------------------ORM--------------------------------
compile("org.mybatis.spring.boot:mybatis-spring-boot-starter:1.1.1")
//--------------------JDK工具------------------------------
compile 'org.projectlombok:lombok:1.16.10'
//---------------------缓存-------------------------------
compile "net.sf.ehcache:ehcache:${ehcacheVersion}"
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dayaodao/jcalaBlog.git
git@gitee.com:dayaodao/jcalaBlog.git
dayaodao
jcalaBlog
jcalaBlog
master

搜索帮助