Grails | Deployment | Include .dll in war
- by WaZ
I have a sqljdbc_auth.dll file which I want to include in my war in order to enable Windows Authentication.
I tried the following code:
grails.war.copyToWebApp = { args ->
fileset(dir:"web-app") {
include(name: "jdbc/**")
}
}
Where jdbc is the folder which contains my sqljdbc_auth.dll file. However, it doesn't work. The war doesn't include the dll.
Please let me know if I am missing anything here.
Thanks.