Re: Apache POI - XSLF ooxml library

2016-08-25 Thread Javen O'Neal
>From https://poi.apache.org/faq.html#faq-N10025 "the poi-ooxml-schemas jar only contains the XSDs and classes that are typically used, as identified by the unit tests" If you want to use the smaller poi-ooxml-schemas file in the future, write a unit test that uses the missing class. We build poi-

Re: Apache POI - XSLF ooxml library

2016-08-25 Thread Guilherme Viteri
Hi, Now it worked fine :D So, at the moment I end up using the 3.15-beta2 - the latest available in Maven Repository - removed the poi-ooxml-schemas and added ooxml-schemas-1.3.jar as recommend in the FAQ you sent and everything worked fine. Thanks for all of your help Dominik. > On 25 Aug 201

Re: Apache POI - XSLF ooxml library

2016-08-25 Thread Dominik Stadler
Hi, That sounds like you still have some old jars in use in your project, can you check? You can also try to use the full schema-jar instead of the ooxml-schemas, see http://poi.apache.org/faq.html#faq-N10025 for details. Dominik. On Wed, Aug 24, 2016 at 3:31 PM, Guilherme Viteri wrote: > Hi,

Re: Apache POI - XSLF ooxml library

2016-08-24 Thread Guilherme Viteri
Hi, Thanks for testing and validating my code As you said I downloaded the trunk version from svn (git svn clone https://svn.apache.org/repos/asf/poi/trunk poisvngit --revision HEAD), then I built using ant jar. I added these jars into my project and then I assume now I get the latest version.

Re: Apache POI - XSLF ooxml library

2016-08-23 Thread Dominik Stadler
Hi, Your sample code works with current POI trunk, maybe you can try with the latest version or at least a recent nightly build to see if your problem is actually fixed there already. Dominik. On Mon, Aug 22, 2016 at 11:51 AM, Guilherme Viteri wrote: > Dear Developers, > > Is there anyone mon