Hibernate cfg and message.properties not available in war

I am deploying java dynamic webapp war to tomcat.After copy, when tomcat start, i am getting exception
[/WEB-INF/sprin
g-config.xml]: Invocation of init method failed; nested exception is java.io.Fil
eNotFoundException: class path resource [hibernate.cfg.xml] cannot be resolved t
URL because it does not exist
Same way message_en.properties also not copied.
Please suggest change to below script.

apply plugin: 'java’
apply plugin: 'war’
sourceCompatibility = 1.7
apply plugin: 'eclipse’
repositories {
mavenCentral()
}
dependencies {

compile("javax.servlet:jstl:1.2")
//compile("org.springframework:spring-context:4.0.3.RELEASE")

// compile(“org.springframework:spring-webmvc:4.0.3.RELEASE”)
//compile(“org.springframework:spring-web:4.0.3.RELEASE”)
//compile(“org.springframework:spring-aop:4.0.3.RELEASE”)
//compile(“org.springframework:spring-aspects:4.0.3.RELEASE”)
//compile(“org.springframework:spring-beans:4.0.3.RELEASE”)
//compile(“org.springframework:spring-core:4.0.3.RELEASE”)
//compile(“org.springframework:spring-expression:4.0.3.RELEASE”)
//compile(“org.springframework:spring-jdbc:4.0.3.RELEASE”)
//compile(“org.springframework:spring-orm:4.0.3.RELEASE”)
//compile(“org.eclipse.persistence:javax.persistence:2.0.0”)
//compile(“antlr:antlr:2.7.7”)
//compile(“commons-logging:commons-logging:1.1.1”)
//compile(“org.hibernate:hibernate-commons-annotations:3.2.0.Final”)
//compile(“org.hibernate:hibernate-core:4.3.5.Final”)
//compile(“org.apache.derby:derbyclient:10.12.1.1”)
//compile(“javax.validation:validation-api:1.0.0.GA”)
//compile(“org.slf4j:slf4j-api:1.7.5”)

}

task copyWar(dependsOn: build) << {
println "Copy from ${libsDir.getPath()} into C:/soft/apache-tomcat-7.0.67/webapps"
copy{
from libsDir
into "C:/soft/apache-tomcat-7.0.67/webapps"
include ‘*.war’
}
}

task deployWebApp(dependsOn: copyWar) << {
def processBuilder = new ProcessBuilder([‘cmd’,’/c’,‘startup.bat’])
processBuilder.directory(new File(“C:/soft/apache-tomcat-7.0.67/bin”))
processBuilder.start()
}
// Set source directory
// War file name
war{

project.webAppDirName = 'WebContent’
sourceSets{

    main {

        java {

            srcDir 'src'
            

             }

         }
      }

}