1 Star 0 Fork 0

yourwafer/springboot-jersy-flayme-jpa-hibernate

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 4.05 KB
一键复制 编辑 原始数据 按行查看 历史
yourwafer 提交于 2016-11-04 15:28 . 初始化代码
buildscript {
ext {
springBootVersion = '1.3.0.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'spring-boot'
jar {
baseName = 'spring-boot-gaia'
version = '0.0.1'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
ext.libraries = [
assertj_core: dependencies.create('org.assertj:assertj-core:3.0.0'),
swagger_jersey2_jaxrs: dependencies.create('io.swagger:swagger-jersey2-jaxrs:1.5.3'),
commons_lang: dependencies.create('commons-lang:commons-lang:2.6'),
yaz: dependencies.create('com.exmertec.yaz:yaz:0.15'),
quartz: dependencies.create('org.quartz-scheduler:quartz:2.2.1'),
orika_core: dependencies.create('ma.glasnost.orika:orika-core:1.4.6'),
flyway_core: dependencies.create('org.flywaydb:flyway-core:3.2'),
commons_codec: dependencies.create('commons-codec:commons-codec:1.9'),
commons_beanutils: dependencies.create('commons-beanutils:commons-beanutils:1.9.2'),
hashids: dependencies.create('org.hashids:hashids:1.0.1'),
jedis: dependencies.create('redis.clients:jedis:2.7.2')
]
dependencies {
compile("joda-time:joda-time")
compile libraries.jedis
compile('org.springframework:spring-jms')
compile('org.apache.activemq:activemq-broker')
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-jersey")
compile("org.springframework.boot:spring-boot-starter-logging")
compile("org.springframework.boot:spring-boot-starter-data-jpa")
compile("org.springframework.boot:spring-boot-starter-aop")
compile("mysql:mysql-connector-java")
compile("org.springframework:spring-context-support")
compile("org.springframework:spring-context")
compile("org.springframework.cloud:spring-cloud-starter-config")
compile("org.springframework.cloud:spring-cloud-starter-eureka")
compile libraries.swagger_jersey2_jaxrs
compile libraries.commons_lang
compile libraries.yaz
compile libraries.quartz
compile libraries.orika_core
compile libraries.flyway_core
compile libraries.commons_codec
compile libraries.commons_beanutils
compile libraries.hashids
testCompile("com.h2database:h2")
testCompile("org.springframework.boot:spring-boot-starter-test")
testCompile libraries.assertj_core
}
allprojects {
apply plugin: 'idea'
apply plugin: 'checkstyle'
apply plugin: 'findbugs'
apply plugin: "io.spring.dependency-management"
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'utf-8'
}
repositories {
mavenCentral()
maven {
url 'http://repo.spring.io/milestone'
}
}
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-starter-parent:Brixton.M3'
}
}
findbugs {
excludeFilter = new File(project(":").projectDir, "config/findbugs/excludeBugsFilter.xml")
}
tasks.withType(FindBugs) {
reports {
xml.enabled = false
html.enabled = true
}
}
checkstyle {
toolVersion = "6.7"
configFile = new File(project(":").projectDir, "config/checkstyle/checkstyle.xml")
}
task unitTest(type : Test) {
exclude 'com/thoughtworks/gaia/test/functional/**'
}
task functionalTest(type : Test) {
include 'com/thoughtworks/gaia/test/functional/**'
}
}
subprojects {
group = 'com.thoughtworks.gaia'
version = '0.0.1'
}
idea {
project {
languageLevel = '1.8'
jdkName = '1.8'
ipr {
withXml { provider ->
provider.node.component
.find { it.@name == 'VcsDirectoryMappings' }
.mapping.@vcs = 'Git'
}
}
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.9'
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/smilewafer/springboot-jersy-flayme-jpa-hibernate.git
git@gitee.com:smilewafer/springboot-jersy-flayme-jpa-hibernate.git
smilewafer
springboot-jersy-flayme-jpa-hibernate
springboot-jersy-flayme-jpa-hibernate
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385