How to use my own GPL code in a non-GPL application? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T19:19:07Zhttp://stackoverflow.com/feeds/question/723562http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/723562/how-to-use-my-own-gpl-code-in-a-non-gpl-application9How to use my own GPL code in a non-GPL application?dr. evil2009-04-06T22:55:19Z2009-04-09T13:33:16Z
<ul>
<li>Can I decide to change the license of my published GPL application to something closed-source [1]?</li>
<li>Can I integrate it into my own commercial application?</li>
</ul>
<p>All code in the published GPL application written by me and there is no 3rd party GPL libraries in it.</p>
<p>Do I still keep the whole ownership of the code even after the GPL release?</p>
<p><em>[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 :)</em></p>
http://stackoverflow.com/questions/723562/how-to-use-my-own-gpl-code-in-a-non-gpl-application/723567#72356716Answer by GWLlosa for How to use my own GPL code in a non-GPL application?GWLlosa2009-04-06T22:57:08Z2009-04-06T22:57:08Z<p>As far as I can tell, you, being the owner of the code, can do whatever you want with it, including relicense it.</p>
<p>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.</p>
http://stackoverflow.com/questions/723562/how-to-use-my-own-gpl-code-in-a-non-gpl-application/723569#7235696Answer by Zifre for How to use my own GPL code in a non-GPL application?Zifre2009-04-06T22:57:33Z2009-04-06T22:57:33Z<p>You can license your code under multiple licenses. License it as both GPL and proprietary (like Qt used to).</p>
http://stackoverflow.com/questions/723562/how-to-use-my-own-gpl-code-in-a-non-gpl-application/723571#7235713Answer by Raim for How to use my own GPL code in a non-GPL application?Raim2009-04-06T22:58:27Z2009-04-07T00:31:02Z<p>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.</p>
<p>But you cannot take back code you once released under GPL <del>, you have to keep it available for the public</del> (<em>see comments</em>).</p>
http://stackoverflow.com/questions/723562/how-to-use-my-own-gpl-code-in-a-non-gpl-application/734245#7342450Answer by vartec for How to use my own GPL code in a non-GPL application?vartec2009-04-09T13:33:16Z2009-04-09T13:33:16Z<blockquote>
<p>Can I decide to change the license of
my published GPL application to
something closed-source</p>
</blockquote>
<p>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. </p>