Re: License issue with iText 4.2.0

2018-06-08 Thread Jacques Le Roux
Are we sure there are no legal issues doing so? It seems OK at https://mvnrepository.com/artifact/com.lowagie/itext/4.2.0 (MPL) But reading https://developers.itextpdf.com/question/versions-older-than-5 which applies also to 4.2.0 (see bottom "Some people claim that they use iText 4.2.0, but

Re: License issue with iText 4.2.0

2018-06-08 Thread Scott Gray
Thanks Taher! Perfect simple solution. Regards Scott On Fri, 8 Jun 2018, 23:19 Taher Alkhateeb, wrote: > So we exclude the transitive dependency in build.gradle and if everything > works then we're fine. > > Syntax: > > compile('com.lowagie:itext:4.2.0') { > exclude

Re: License issue with iText 4.2.0

2018-06-08 Thread Jacques Le Roux
Flexible Birt reports works as well w/o itext. Not sure though why itext is embedded in Birt and what for it's used It seems used for digital signature and accessibility at least: https://communities.opentext.com/forums/discussion/57615/birt-and-digital-signature

Re: License issue with iText 4.2.0

2018-06-08 Thread Jacques Le Roux
Le 08/06/2018 à 15:14, Jacques Le Roux a écrit : Actually at least simple Birt PDF files (in ordermgr/control/OrderPurchaseReportOptions)  are rendered w/o itext. Note: of course I removed ALL itext files from Gradle cache

Re: License issue with iText 4.2.0

2018-06-08 Thread Jacques Le Roux
Actually at least simple Birt PDF files (in ordermgr/control/OrderPurchaseReportOptions)  are rendered w/o itext. I'll try later for more complex ones at birt/control/ListFlexibleReport Jacques Le 08/06/2018 à 14:29, Jacques Le Roux a écrit : One question though: do we need itext to render

Re: License issue with iText 4.2.0

2018-06-08 Thread Jacques Le Roux
One question though: do we need itext to render PDF with Birt? I did not test that... Le 08/06/2018 à 14:24, Jacques Le Roux a écrit : But the problem is still: >But that sounds not good https://developers.itextpdf.com/question/versions-older-than-5 and especially http://lowagie.com/iText

Re: License issue with iText 4.2.0

2018-06-08 Thread Jacques Le Roux
But the problem is still: >But that sounds not good https://developers.itextpdf.com/question/versions-older-than-5 and especially http://lowagie.com/iText (the original author) + http://lowagie.com/itext2016 Le 08/06/2018 à 14:21, Jacques Le Roux a écrit : Not sure, At least I tried to

Re: License issue with iText 4.2.0

2018-06-08 Thread Jacques Le Roux
Not sure, At least I tried to create Last3MonthsSalesReport.pdf with compile 'com.lowagie:itext:2.1.7' // don't update because of license change and it works (empty): 2018-06-08 14:16:12,909 |jsse-nio-8443-exec-6 |ScreenFactory |I| Got 8 screens in 0.006s from:

Re: License issue with iText 4.2.0

2018-06-08 Thread Jacques Le Roux
Oops you were clear, my bad. That's indeed an issue and we can't force itext 4.2.0 to use another compatible itextpdf version. Because itext 4.2.0 has a dependency on itextpdf from start and itextpdf is AGPL from start https://mvnrepository.com/artifact/com.lowagie/itext

Re: License issue with iText 4.2.0

2018-06-08 Thread Taher Alkhateeb
So we exclude the transitive dependency in build.gradle and if everything works then we're fine. Syntax: compile('com.lowagie:itext:4.2.0') { exclude 'com.itextpdf:itextpdf:5.5.6' } On Fri, Jun 8, 2018, 11:40 AM Scott Gray wrote: > Hey Jacques, > > Maybe I wasn't clear, OFBiz is

Re: License issue with iText 4.2.0

2018-06-08 Thread Scott Gray
Hey Jacques, Maybe I wasn't clear, OFBiz is downloading 5.5.6 as a dependency of 4.2.0, does it make sense? Regards Scott On Fri, 8 Jun 2018, 19:30 Jacques Le Roux, wrote: > I suggest this comment, a Jira seems appropriate > > -compile 'com.lowagie:itext:4.2.0' > +compile

Re: License issue with iText 4.2.0

2018-06-08 Thread Jacques Le Roux
I suggest this comment, a Jira seems appropriate -    compile 'com.lowagie:itext:4.2.0' +    compile 'com.lowagie:itext:4.2.0' // don't update to 5+ because of license change Jacques Le 08/06/2018 à 09:26, Jacques Le Roux a écrit : Le 08/06/2018 à 09:24, Jacques Le Roux a écrit : Hi Scott,

Re: License issue with iText 4.2.0

2018-06-08 Thread Jacques Le Roux
Le 08/06/2018 à 09:24, Jacques Le Roux a écrit : Hi Scott, Reading Wikipedia It's OK as long as we don't update to a version >= 5  https://en.wikipedia.org/wiki/IText Here is another source for MPL licensing: https://www.eclipse.org/forums/index.php/t/175386/

Re: License issue with iText 4.2.0

2018-06-08 Thread Jacques Le Roux
Hi Scott, Reading Wikipedia It's OK as long as we don't update to a version >= 5  https://en.wikipedia.org/wiki/IText or the GNU Library General Public License open source