您的位置:首页 > 其它

IntelliJ IDEA —— grnadle配置文件

2016-05-08 10:16 211 查看
apply plugin:'java'
apply plugin:'war'
war {
archiveName 'OS.war'
}

version = ''
compileJava.options.encoding = 'UTF-8'
repositories{
jcenter();
}def springVer = '3.2.4.RELEASE'dependencies{

compile fileTree(dir:"libs",include:"*.jar");

compile 'org.apache.commons:commons-lang3:3.1'
compile 'org.springframework:spring-core:' + springVercompile 'commons-beanutils:commons-beanutils:1.9.2'
testCompile 'junit:junit:4.12'
providedCompile 'javax.servlet:servlet-api:2.5'
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: