1 Star 1 Fork 1

yangsong0723 / Breakpoint-http

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 1.28 KB
一键复制 编辑 原始数据 按行查看 历史
Fourwenwen 提交于 2017-08-01 23:02 . breakpoint-http
group 'win.pangniu.learn'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'maven'
apply plugin: 'spring-boot'
sourceCompatibility = 1.7
buildscript {
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
dependencies {
classpath(
"org.springframework.boot:spring-boot-gradle-plugin:1.5.2.RELEASE"
)
}
}
repositories {
mavenCentral()
}
dependencies {
compile(
'org.springframework.boot:spring-boot-starter-web',
'org.springframework.boot:spring-boot-starter-data-redis'
)
// https://mvnrepository.com/artifact/commons-io/commons-io
compile group: 'commons-io', name: 'commons-io', version: '2.5'
// https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload
compile group: 'commons-fileupload', name: 'commons-fileupload', version: '1.3.2'
// https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.5'
//providedCompile("org.springframework.boot:spring-boot-starter-tomcat")
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile('org.springframework.boot:spring-boot-starter-test')
}
// war
war {
archiveName 'bphttp.war'
}
Java
1
https://gitee.com/yangsong0723/Breakpoint-http.git
git@gitee.com:yangsong0723/Breakpoint-http.git
yangsong0723
Breakpoint-http
Breakpoint-http
master

搜索帮助