Question

I am working on an academic research project whose results and some code we intend to publish. Research journals and conferences explicitly require that the authors have copyright over the work done in a paper. However, I would like to share the code with the community as it progresses using an open source license.

Is there a license that explicitly retains copyright while allowing sharing, redistribution and derivative works based on the original work?

Alternatively, which license would be suitable for such projects?

Was it helpful?

Solution

If you wrote the code, you are the copyright owner. If you are writing the code in a "work for hire" situation, they are the copyright owners. As of 1989, copyright ownership is automatic, and stating it is optional. I believe it is also prudent.

As a copyright owner, you can (according to Wikipedia):

  1. produce copies or reproductions of the work and to sell those copies (including, typically, electronic copies)
  2. import or export the work
  3. create derivative works (works that adapt the original work)
  4. perform or display the work publicly
  5. sell or cede these rights to others
  6. transmit or display by radio or video.

You may license your work to somebody else, and in the license, you can grant any or all of the rights of copyright to the licensee. You can also make these copyright grants free, or conditional upon payment of license fees. Licenses can also be time-limited.

In your case, you want to share. Assuming that there are no patents involved in your work, I would go with:

  1. the GPLv2 license if you want your code to be forever free to study and improve, and all derivative works to also be free to study and improve. (Programmers and academics usually prefer this one).
  2. the MIT license if you want anybody to be able to freely use your code, but allow them to keep their derivative works secret. (Commercial software vendors tend to like this one better).

If there are patents involved, the licensee is responsible for also acquiring patent licenses for relevant patents.

If there are patents (which you own) which you also want to freely release with this software, use:

  1. the GPLv3 license - For the same reasons as GPLv2.
  2. the Apache 2.0 license - For the same reasons as the MIT license.

In all of these cases you retain copyright ownership, and the code can be shared.

OTHER TIPS

The only "license" where you don't retain copyright is when you release a work as public domain. With all other copyright licenses, you retain copyright to your work.

Additionally, you are also allowed to publish your own work under multiple licenses, so you can distribute the source under one license to the magazine and under a different license to the general public.

The only thing you have to keep in mind is, if you accept contributions from the public to your code, the copyright on those contributions is retained by the respective contributers, unless they explicitly assign the copyright over to you. This means that you might not be able to use the contributions in your article.

Licensed under: CC-BY-SA with attribution
scroll top