vote up 9 vote down star
  • Can I decide to change the license of my published GPL application to something closed-source [1]?
  • Can I integrate it into my own commercial application?

All code in the published GPL application written by me and there is no 3rd party GPL libraries in it.

Do I still keep the whole ownership of the code even after the GPL release?

[1] I know that people got rights to use old code or fork it which I'm fine with. But I don't want to get sued because I stole my own code :)

flag

1  
Just make sure that the copy of the code you distribute to the non-GPL application development is not marked as GPL licenced. – Jonathan Leffler Apr 7 at 0:39
It is the copyright holder that is supposed to sue... As long as you are the sole copyright holder you'll be fine unless you possess multiple personalities. – Subtwo Jun 13 at 9:01
@Subtwo, relicensing is key (and what I've done in the past). As I understand it, without relicensing the GPL allows users to sue for source code of the composite program. – NVRAM Sep 8 at 21:28

4 Answers

vote up 16 vote down check

As far as I can tell, you, being the owner of the code, can do whatever you want with it, including relicense it.

I don't think you'll be able to "take it back" from anyone who still has it, or prevent them from GPL'ing a fork or something.

link|flag
Yes, this is correct. You can re-license your own code any way you like (as long as you haven't accepted other people's contributions under the GPL) but you can't revoke existing licenses - i.e. you can stop distributing but other can keep distributing their copies. – ceejayoz Apr 6 at 23:34
The "prevent from GPL'ing a fork" concept is important, and needs to be emphasized. – Joel Coehoorn Apr 7 at 0:19
If your project mandates copyright reassignment when you accept patches, ceejayoz's concern about others' patches is not relevant. :) – cookiecaper Apr 7 at 0:35
vote up 6 vote down

You can license your code under multiple licenses. License it as both GPL and proprietary (like Qt used to).

link|flag
vote up 3 vote down

Yes. You can release the code you have written yourself any time again under a different license or do whatever you want with it. You still keep the copyright on that code. GPL only applies to "copying, distribution and modification" as stated in the license itself.

But you cannot take back code you once released under GPL , you have to keep it available for the public (see comments).

link|flag
I'm not a lawyer, but I think your last sentence is not correct. I'm not responsible for keeping my GPL'ed code available now and forever, it only must be released with every program based on the sources (whoever the publisher is is responsible for that and not myself) – divo Apr 6 at 23:27
Wrong on the last sentence, @Raim. Such a restriction would be an unconscionably onerous one - it'd legally require GPL project contributors to pay for hosting in perpetuity! You can stop distributing GPL code any time you like, you just can't stop others from picking up the slack. – ceejayoz Apr 6 at 23:35
Maybe I was a bit unclear with "code" here. Once you provided a GPL covered binary without source in the same distribution for download, the source has to be available from the same place. Even if you stop providing the binary, the source code has to be available. GPLv3, Section 6. – Raim Apr 8 at 14:57
@Raim: only if you provided binary, only to the people that you've provided binary to, and you can make it available only explicit on request. – vartec Apr 9 at 13:36
No, "in the same way through the same place". If the binary was available for download by everyone, the source has to be the same and must remain that way "for as long as needed to satisfy these requirements". – Raim Apr 9 at 20:15
vote up 0 vote down

Can I decide to change the license of my published GPL application to something closed-source

Of course. The key is that it has to be yours and only yours. If you've accepted patches from other people, then the case is not so clear cut. Safe way would be to strip your code of these patches, and change it's license. Although in some legislatures, the contribution must be "significant" to even take in account, so you might get away with changing license of the code with patches.

link|flag
I'm lucky (or a failure!) on that subject no send any patches or contributed at all :) – dr. evil Apr 9 at 13:57

Your Answer

Get an OpenID
or

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