Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GPL 2.0 Free Telerik Extensions for ASP.NET MVC [closed]

Is my ASP.NET MVC project automatically GPL 2.0 licensed by including these libraries? I always find this confusing with the GPL.

like image 541
BuddyJoe Avatar asked Jul 29 '10 16:07

BuddyJoe


People also ask

Is Telerik MVC free?

UI for Universal Windows Platform Grab Telerik UI for UWP—the entire product suite is now open source and completely free for you to use.

What is Telerik in ASP NET MVC?

Telerik UI for ASP.NET MVC is a set of 110+ performance optimized components that allow you to deliver high-quality applications faster. These components come in the form of HTML helpers that wrap the HTML/JavaScript Kendo UI widgets and bring them to . NET MVC.

What is Kendo UI in MVC?

Kendo UI is a modern all-inclusive HTML5/JS framework - it's fast, light and complete, with 70+ jQuery-based UI widgets in one toolset. Kendo UI sports integration with AngularJS and BootStrap, as well as, support for mobile-specific controls and offline data solutions.


2 Answers

Yes, it is. You'll be statically referencing their code. That clearly falls under the "requires a GPL-compatible license" areas.

You can, of course, buy a commercial license or use a different component if you don't want to GPL your project.

like image 71
Craig Stuntz Avatar answered Sep 24 '22 16:09

Craig Stuntz


Your application only requires a GPL license when you distribute your application.

For example:

Scenario #1: You develop a website which uses a mysql database and the Telerik ASP.NET MVC controls (both GPL Open Source licenses). You then deploy your application to your web server and users interact with your application UI via their browsers then you do not need to GPL your software since you have not distributed the software to the users.

Scenario #2: You then create an installer for your application and sell your application with the intention of customers installing and running the application on their own servers then your software would need to be GPL licensed since you have distributed your software. NOTE: you can't circumvent this by not including mysql in your installation package and requesting the user download and install this independantly.

Hope this helps.

like image 22
Alan Savage Avatar answered Sep 22 '22 16:09

Alan Savage