我很难让Gradle在Google Web应用程序项目中为我的/ war / WEB-INF / lib目录添加依赖项。
apply plugin: 'java'
apply plugin: 'war'
repositories {
mavenCentral()
}
dependencies {
compile 'com.google.code.gson:gson:2.2.4'
}
使用Eclipse,gson-2.2.4.jar出现在Project和External Dependencies(项目编译)中但没有被添加到/ war / WEB-INF / lib(运行时的NoClassDef异常,因为它可以&# 39;找到.jar)
我尝试过更改webAppDir,webAppDirName和编辑战争任务都无济于事。