Skip to content

Commit b9bf508

Browse files
authored
Merge pull request #802 from mixcore/copilot/update-licensing-and-attributions
Validate AGPL-3.0 licensing implementation, add license headers, and fix mix-heart license attribution
2 parents 3cd7ce2 + 6b36728 commit b9bf508

File tree

10 files changed

+73
-2
lines changed

10 files changed

+73
-2
lines changed

NOTICE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ This software includes the following third-party components:
1717
mix-heart (Core Library)
1818
--------------------------------------------------------------------------------
1919
Location: /src/platform/core/mix-heart/
20-
License: MIT License
21-
Copyright (c) 2019 Mixcore
20+
License: GNU Affero General Public License v3.0 (AGPL-3.0)
21+
Copyright (c) 2019-2024 Mixcore Foundation
2222
Repository: https://github.com/mixcore/mix.heart
2323

2424
--------------------------------------------------------------------------------

src/applications/mixcore.gateway/Program.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
// ============================================
2+
// Mixcore CMS
3+
// Copyright (c) Mixcore Foundation. All rights reserved.
4+
// Licensed under the GNU Affero General Public License v3.0 (AGPL-3.0).
5+
// See LICENSE file in the project root for full license information.
6+
// Commercial licenses available at https://mixcore.org/licensing
7+
// ============================================
18

29
using Microsoft.Extensions.DependencyInjection.Extensions;
310
using Mix.Constant.Constants;

src/applications/mixcore.host.aspire.AppHost/Program.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
// ============================================
2+
// Mixcore CMS
3+
// Copyright (c) Mixcore Foundation. All rights reserved.
4+
// Licensed under the GNU Affero General Public License v3.0 (AGPL-3.0).
5+
// See LICENSE file in the project root for full license information.
6+
// Commercial licenses available at https://mixcore.org/licensing
7+
// ============================================
8+
19
var builder = DistributedApplication.CreateBuilder(args);
210

311
var mixcore = builder.AddProject<Projects.mixcore>("mixcore");

src/applications/mixcore.spa/mixcore.spa.Server/Program.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
// ============================================
2+
// Mixcore CMS
3+
// Copyright (c) Mixcore Foundation. All rights reserved.
4+
// Licensed under the GNU Affero General Public License v3.0 (AGPL-3.0).
5+
// See LICENSE file in the project root for full license information.
6+
// Commercial licenses available at https://mixcore.org/licensing
7+
// ============================================
8+
19
var builder = WebApplication.CreateBuilder(args);
210

311
// Add services to the container.

src/modules/mix.account/Program.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
// ============================================
2+
// Mixcore CMS
3+
// Copyright (c) Mixcore Foundation. All rights reserved.
4+
// Licensed under the GNU Affero General Public License v3.0 (AGPL-3.0).
5+
// See LICENSE file in the project root for full license information.
6+
// Commercial licenses available at https://mixcore.org/licensing
7+
// ============================================
8+
19
namespace Mix.Account
210
{
311
public class Program

src/modules/mix.portal/Program.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
// ============================================
2+
// Mixcore CMS
3+
// Copyright (c) Mixcore Foundation. All rights reserved.
4+
// Licensed under the GNU Affero General Public License v3.0 (AGPL-3.0).
5+
// See LICENSE file in the project root for full license information.
6+
// Commercial licenses available at https://mixcore.org/licensing
7+
// ============================================
8+
19
using Mix.Database.Entities.Account;
210
using System.Reflection;
311
using Mix.Log.Lib;

src/modules/mix.scheduler/Program.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
// ============================================
2+
// Mixcore CMS
3+
// Copyright (c) Mixcore Foundation. All rights reserved.
4+
// Licensed under the GNU Affero General Public License v3.0 (AGPL-3.0).
5+
// See LICENSE file in the project root for full license information.
6+
// Commercial licenses available at https://mixcore.org/licensing
7+
// ============================================
8+
19
using Microsoft.AspNetCore.Hosting;
210
using Microsoft.Extensions.Hosting;
311

src/modules/mix.tenancy/Program.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
// ============================================
2+
// Mixcore CMS
3+
// Copyright (c) Mixcore Foundation. All rights reserved.
4+
// Licensed under the GNU Affero General Public License v3.0 (AGPL-3.0).
5+
// See LICENSE file in the project root for full license information.
6+
// Commercial licenses available at https://mixcore.org/licensing
7+
// ============================================
8+
19
namespace Mix.Tenancy
210
{
311
public class Program

src/services/core/graphql/mix.services.graphql/Program.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
// ============================================
2+
// Mixcore CMS
3+
// Copyright (c) Mixcore Foundation. All rights reserved.
4+
// Licensed under the GNU Affero General Public License v3.0 (AGPL-3.0).
5+
// See LICENSE file in the project root for full license information.
6+
// Commercial licenses available at https://mixcore.org/licensing
7+
// ============================================
8+
19
using Mix.Shared.Extensions;
210

311
var builder = WebApplication.CreateBuilder(args);

src/services/core/mix-auth-service/mix.auth.api/Program.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
// ============================================
2+
// Mixcore CMS
3+
// Copyright (c) Mixcore Foundation. All rights reserved.
4+
// Licensed under the GNU Affero General Public License v3.0 (AGPL-3.0).
5+
// See LICENSE file in the project root for full license information.
6+
// Commercial licenses available at https://mixcore.org/licensing
7+
// ============================================
8+
19
using Mix.Database.Entities.Account;
210
using System.Reflection;
311
using Mix.Log.Lib;

0 commit comments

Comments
 (0)