What license should I pick on codeplex if I want an open source project? What are the pros and cons on all licenses?
closed as not constructive by Kyle Trauberman, Filburt, ChrisF♦, David Pfeffer, j0k Oct 2 '12 at 20:36
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
If you want to ensure that anyone who modifies your program or builds on top of your program (by linking to it) should share their changes in the same way that you share yours, you should choose the GPL. If you want to ensure that anyone who modifies your library share their changes, but allow people to dynamically link to it from a proprietary application, in which they don't share the source with you under the terms you shared it with them, you should choose the LGPL. If you want to allow anyone to use your code as they wish, with no significant restrictions other than providing you credit, you should use the MIT (also known as X11) license. It is short, simple, easy to understand, and permissive. If you need to integrate with an existing project that already has a license, you should probably just use the same license. Having everything in one project under the same license makes life a lot easier for anyone who wants to use it. But if you're creating a new project, I would recommend one of the three licenses listed above, since they are widely used, well known so people know exactly what you mean when you mention them, and will make it easier to integrate your code with existing projects. There are lots of other licenses to choose from, but in general, they just make things more complicated and difficult (because they are less well known, because of license incompatibilities, etc) without improving on one of the licenses listed above. |
|||||
|
|
It depends very much on what you want. I'll summarize very briefly, but I recommend reading more in depth on various licenses.
|
|||||||||
|
|
The choice of license is personal, and depends on how you want your project used. I would recommend reading up on this at the Open Source Inititive. In particular, they have a page describing licenses grouped in categories. Here are some of the more common, by goal: For encouraging commercial usage of your project, I'd recommend looking at the BSD and MIT licenses. For encouraging commercial and noncommercial work, but forcing that all users share any modifications to your code, look at the LGPL license. If you want to force everybody who uses your code to share any modifications, look into the GPL license. There are many others listed, each with their own significant benefits and downsides... These are just four very common choices. |
|||||
|