Any difference if we want to build commercial software?
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.
|
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. | |||||||||||||
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. | |||
|
feedback
|