Any difference if we want to build commercial software?

link|improve this question

1  
That's a legal question, not a programming one. – Eric J. Mar 7 '11 at 1:57
I've been curious about how the lgpl affects Java code as well--is class loading considered dynamic linking? – Matthew Willis Mar 7 '11 at 1:58
@Matthew yes, that and inheritance are both considered the same as linking I believe, and FSF confirms that. Others might disagree though. – Rafe Kettler Mar 7 '11 at 2:00
2  
On a pedantic note, the FSF would remind you that even the GPL has no restrictions on commercial software per se--you just have to distribute the source if you decide to distribute the product. – Matthew Willis Mar 7 '11 at 2:17
1  
From a technical perspective, inheritance at the Java source code level results in a dependency on the superclass / interface that requires linking to the corresponding .class file at runtime. – Stephen C Mar 7 '11 at 2:25
show 2 more comments
feedback

closed as off topic by Eric J., Mitch Wheat, jzd, Tim Cooper, mauris Mar 7 '11 at 2:20

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

2 Answers

up vote 10 down vote accepted

If you want to build commercial software, use the Apache license version. It's a more permissive license than LGPL, so you won't run into any problems using Jackson under the Apache license in your proprietary work provided you follow every term of the Apache license (all are very reasonable). The main difference is that the LGPL might require you to make your application open-source under certain use cases and the Apache license will not.

Depending on your use case the LGPL version might also be usable but the Apache license is a safer bet.

link|improve this answer
Commercial software should stay clear of LGPL at all costs, especially when you could argue that jackson is generating code and thus you are using LGPL code to generate some of your code base, thus all of your code base must be LGPL. – MeBigFatGuy Mar 7 '11 at 2:08
@MeBigFatGuy I don't know why anyone would choose the LGPL in a commercial context when the Apache license was also an option. But it was asked, so... – Rafe Kettler Mar 7 '11 at 2:09
2  
@MeBigFatGuy - where did you get the idea that generated code inherits the license of whatever generated it? If that was true, then you couldn't use gcc to build anything that wasn't GPL. – Mike Baranczak Mar 7 '11 at 3:20
1  
@MeBigFatHGuy all your code base are belong to us – Rafe Kettler Mar 7 '11 at 3:21
feedback

You'll have to read the licenses yourself to know which one to use:

http://www.gnu.org/licenses/lgpl.html

http://www.apache.org/licenses/LICENSE-2.0.html

The LGPL version will require you to pass along the source code to the library, the Apache version will not. It's up to you to decide which license is a better match for your project.

link|improve this answer
feedback

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