I've written a java library that I'd like to release under GPL and under a commercial license. Now I'm not so sure how to put that into the source code. Is something like this appropriated?

/*
 * If you purchased a commercial license for product X the commercial
 * license agreement applies to this source code.
 * Otherwise the GPL license agreement applies to this source code.
 */
/*
 * Commercial license text
 */
/*
 * GPL license text
 */

Thanks!

link|improve this question
@freedompeace : That is a common decision. It means that the user of the library gets the choice. – MSalters Jul 22 '11 at 7:53
@freedompeace: What MSalters said. This answer shows a nice example of dual licensing. – spreiter301 Jul 22 '11 at 8:12
feedback

1 Answer

up vote 2 down vote accepted

It's a bit overkill. Generally, you can just add the license texts as seperate files in your source distribution, and in your source code just reference those.

I.e.

/*
 *   This library is dual-licensed: you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License version <N> as 
 *   published by the Free Software Foundation. For the terms of this 
 *   license, see licenses/gpl_v<N>.txt or <http://www.gnu.org/licenses/>.
 *
 *   You are free to use this library under the terms of the GNU General
 *   Public License, but WITHOUT ANY WARRANTY; without even the implied 
 *   warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *   See the GNU General Public License for more details.
 *
 *  Alternatively, you can license this library under a commercial
 *  license, as set out in licenses/commercial.txt.
 */
link|improve this answer
Thanks for the help! This is what I was looking for. – spreiter301 Jul 22 '11 at 8:14
feedback

Your Answer

 
or
required, but never shown

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