加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 470 Bytes
一键复制 编辑 原始数据 按行查看 历史
郁骏 提交于 2014-06-26 17:10 . change the constructor to package private
apply plugin: 'java'
apply plugin: 'idea'
version = '0.1-SNAPSHOT'
repositories {
maven { url 'http://maven.oschina.net/content/groups/public/' }
}
dependencies {
compile group: 'com.google.inject', name: 'guice', version: '3.0'
compile group: 'com.google.code.findbugs', name: 'jsr305', version:'2.0+'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
task showClasspath << {
println(configurations.runtime.collect { it }.join(','))
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化