Grails | Deployment | Include .dll in war

Posted by WaZ on Stack Overflow See other posts from Stack Overflow or by WaZ
Published on 2010-05-06T10:01:57Z Indexed on 2010/05/06 10:08 UTC
Read the original article Hit count: 183

Filed under:

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.

© Stack Overflow or respective owner

Related posts about grails