https://bz.apache.org/bugzilla/show_bug.cgi?id=54588
--- Comment #20 from Dominik Stadler <[email protected]> --- I'm not an expert on Gradle myself, but I would use the snippet that I posted previously in the dependencies-section directly, not in the poi-library-definition, i.e. dependencies { // ...other dependencies... compile files('poi-3.14-beta1/poi-3.14-beta1-20151027.jar') compile files('poi-3.14-beta1/poi-3.14-ooxml-20151027.jar') compile files('poi-3.14-beta1/poi-3.14-ooxml-schemas-20151027.jar') compile files('poi-3.14-beta1/poi-3.14-scratchpad-20151027.jar') // ...other dependencies... } instead of dependencies { // ...other dependencies... compile libraries.poi // ...other dependencies... } Note: You might need to add a line for the XmlBeans-jar as well in this case. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
