Question

I've created a Java project based on a C# sample application that was published under the Code Project Open License (CPOL) which sounds to me quite similar to MIT.

As I was the only user of this library for a while I didn't care too much about the concrete licensing. However, I was asked recently to choose one so others might reuse it. I'm in favor of the MIT license because of its simlicity though I'm not sure if I'm allowed to switch as the Java port is some kind of derivative work.

Do I have to stick with the CPOL license or am I allowed to switch to MIT?

Was it helpful?

Solution

I've created a Java project based on a C# sample application that was published under the Code Project Open License (CPOL)

There are two key parts to your question.

I've created a Java project

If you create a project, you usually own the copyright. You are permitted to license it however you please. (exception outside the scope of this question: work-for-hire, which is usually the case when you are paid to create intellectual property).

based on a C# sample application

...unless it is a derivative work. Then the path forward is less clear. In general if you create a clean room implementation you may be making software the interoperates with other software, or is conceptually based on other software. However, if you do not actually use any intellectual property, you generally own the copyright to the new work. Ask a lawyer who specializes in intellectual property law in your jurisdiction to be sure.

If your work is a derivative work, you must comply with the licensing terms of the original work, or negotiate different terms with the copyright owner of the original work.

In summary:

  1. Determine if your work is an original or derivative work.
  2. If it is a derivative work, review the license with a lawyer or contact the original author for special licensing terms or to grant you full copyright control over your derivative work.

OTHER TIPS

I'd prefer to ask the author of the original package. He may grant you any type of license beyond the original license.

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