vote up 1 vote down star
1

Hello,

This question has been asked multiple times I know. From what I understand, broadly speaking, if I include a GPL module in my app, I have to also release my app's source code for free.

Now if the module is a java app (which I have modified) and included in my own java app, and say I use it as an applet on my website, do I need to distribute the source code to all the users visiting the website? Can I distribute the code only to people who ask for it?

If I sell my applet, do I need to distribute the source code to all the users or ONLY to the users who purchase my applet?

Thank you very much for your time.

flag

76% accept rate
I thought you only had to publish the GPL'd code + modifications to it directly? Does that include using it in another app? – John Weldon May 9 at 5:36
As you already noticed that "This question has been asked multiple times I know.", why do you ask again? stackoverflow.com/questions/tagged/gpl – lothar May 9 at 7:00
I am not asking the same question. – Alec Smart May 9 at 10:05

2 Answers

vote up 3 vote down check

If you use it on your website, you are distributing the binary code, which means you are required to also make available the source code. (GPLv2 3, GPLv3 6)

If you sell it, you need only distribute source to the users who purchase the applet. If you do not distribute source at the time of purchase, you may be required to distribute it to others, see GPLv2 3.b or GPLv3 6.b-6.e

I am not a lawyer; this is my understanding of what the GPL means based on a lay interpretation. Your mileage may vary. This is not intended as legal advice; contact an actual, honest-to-goodness, expensive lawyer if you want some of that (and you probably do!). Choking risk: not for use by small children.

link|flag
vote up 0 vote down

A software component released in GPL also propagates the GPL to any app that uses it, and therefore is useless in any closed source software. That is, even if you sell your applet, you must give the source code to anyone who asks for it (and he's free do anything with it). So, trying to sell it makes little sense.

Luckily, for modules, components, libraries and such there's LGPL (Lesser GPL), which allows you to use the module in your app with not so strict requirements - one requirement being that the LGPL'd part must be swappable by the end user.

In a nutshell, while GPL is completely useless for closed source software, LGPL may be useful.

link|flag
LGPL only applies if the original author put the library under LGPL of course. And there are some special requirements - broadly speaking, there needs to be a way for the user to swap out the LGPL component for their own version. – bdonlan May 9 at 6:30
True; it's the library author's choice of course. Fixed the LGPL swap requirements now. – Joonas Pulakka May 9 at 6:36
nitpicky: There is quite some commercial GPLed software available. I'd replace "useless in commercial software" with "useless in closed source software" - be it commercial or not. The license is not about the underlying business model, it's about the availability of the code. These aspects are often mangled. – Olaf May 9 at 6:37
Nitpicky, but right :-) Fixed it now. Though, the usual business model seems to be that there's GPLed "basic version" and closed source "advanced version"; it's a possible combination, because the original author can release the GPLed part also under some other (e.g. closed) license. – Joonas Pulakka May 9 at 6:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.