2 Star 1 Fork 0

kaibb/HelloJetty

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
kaibb 提交于 2015-09-04 05:13 . 初始学习jetty.
apply plugin: 'java'
apply plugin: 'idea'
compileJava {
sourceCompatibility = 1.8
targetCompatibility = 1.8
options.encoding = 'utf-8'
}
compileTestJava {
sourceCompatibility = 1.8
targetCompatibility = 1.8
options.encoding = 'utf-8'
}
version = '1.0'
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}
repositories {
mavenCentral()
mavenLocal()
}
ext.slf4jVersion = "1.7.6"
ext.springVersion = "4.1.0.RELEASE"
ext.powerMockVersion = "1.5.4"
ext.logbackVersion = "1.1.1"
ext.jettyVersion = "9.3.0.M2"
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11' //此处不能用${junitVersion}
compile "ch.qos.logback:logback-core:${logbackVersion}"
compile "ch.qos.logback:logback-core:${logbackVersion}",
"org.slf4j:slf4j-api:${slf4jVersion}",
"org.eclipse.jetty:jetty-server:${jettyVersion}",
"org.eclipse.jetty:jetty-xml:${jettyVersion}",
"org.eclipse.jetty:jetty-webapp:${jettyVersion}",
"org.eclipse.jetty:jetty-deploy:${jettyVersion}",
"org.eclipse.jetty:jetty-quickstart:${jettyVersion}"
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/bb/HelloJetty.git
git@gitee.com:bb/HelloJetty.git
bb
HelloJetty
HelloJetty
master

搜索帮助