Greetings, With the current developments regarding Oracle announcing its intention to charge for a pro (or whatever you call it) version of JVM, and IBM announcing its intention to support OpenJDK, things are getting quite complicated for a large set of Java developers. We have a large piece of work in Java, and we did not have any issues in choosing our licensing terms up until now. It appears that we'll have to switch to OpenJDK where IBM will be putting their support. But OpenJDK is GPL V2, and as far as I know, any code linking to GPL V2 must be GPL V2. We also have some JNI code, which is going to get even larger. Given these facts, does it mean that if we use OpenJDK to run our software, we'll have to switch to GPL for our licensing? Needless to say, this would blow away our whole licensing & business model setup.

Best regards Seref

link|improve this question

79% accept rate
My understanding of this is that so long as you are not extending the JVM you don't have to worry about what licence the code is released under. Now if your code extends the OpenJDK then you might have issues, but 99.999% (I made that up) of users only use it as a VM. – Rulmeq Nov 10 '10 at 10:55
Can you provide me a link about Oracle's announcement and of IBM's? – The Elite Gentleman Nov 10 '10 at 10:56
feedback

3 Answers

up vote 6 down vote accepted

The license for OpenJDK is not "GPL v2", it's "GPL v2 with the Classpath Exception". Quote:

As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library.

link|improve this answer
Ah, so this is the road out of this mess! Thanks Chris, I was having a bad day thinking about this :) – sarikan Nov 10 '10 at 11:02
+1 This is a common misconception – Martijn Verburg Nov 10 '10 at 12:03
feedback

Do I need to open my source code if I use OpenJDK as JVM?

Absolutely not.

There are many commercial, closed-source Java applications out there that use OpenJDK-based JVMs. The "Classpath exception" that @Chris Lercher mentions specifically makes this legal.

Incidentally, the "Classpath exception" was invented by FSF's lawyers specifically to allow the GNU Classpath libraries (a cleanroom reimplementation of the Java SE libraries) to be used to run proprietary / closed source applications. Hence, the name ...

The only cases where you would need to worry are things like:

  • closed source JVMs that use the OpenJDK codebase, or
  • closed source applications that contain modified copies of OpenJDK classes.

And even then, if you got permission from the copyright owner (currently Oracle) you would be in the clear.

link|improve this answer
maybe I should turn this into another question, but how reliable is OpenJDK? I mean does it exist in the enterprise at the moment? – sarikan Nov 10 '10 at 15:48
Ask another question. But both parts are not objectively answerable on SO so likely to be closed. – Stephen C Nov 10 '10 at 22:02
feedback

Please read the lines at the beginning of the classpath exception. The classpath exception doesn't seem to apply to the entire library.

Certain source files distributed by Sun Microsystems, Inc. are subject to the following clarification and special exception to the GPL, but only where Sun has expressly included in the particular source file's header the words "Sun designates this particular file as subject to the "Classpath" exception as provided by Sun in the LICENSE file that accompanied this code."

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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