this post was submitted on 28 Aug 2024
4 points (75.0% liked)

Legal Advice

230 readers
1 users here now

founded 1 year ago
MODERATORS
 

In my AGPL3 project, can I use code from a GPL3 project and publish it under the AGPL3 licence? If not how would i go about using said code?

you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 3 points 1 month ago (1 children)

GPL3 has a clause specifically to deal with this situation [1]

  1. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.

So you can use GPL3 code in AGPL projects. The GPL3 portion of the code will still be licensed under GPL3, but the network interaction clause of the AGPL3 will apply to the project as a whole, including the GPL3 parts.

[1] https://www.gnu.org/licenses/gpl-3.0.en.html

[โ€“] [email protected] 2 points 1 month ago

Thanks so much wanted to make sure i was in the clear