task zip(type:Zip, dependsOn:['clean', 'jar']){ metadataCharset "UTF-8" extension "zip" into(project.name){ from("bin/") into("lib"){ from(configurations.compile) from('build/libs/') } into("config"){ from("src/main/resources/") } into("webapp"){ from("src/main/webapp") } } }