Skip to content

Commit

Permalink
spdx compliance
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaskollmer committed Nov 29, 2022
1 parent 8c575fd commit 49418d9
Show file tree
Hide file tree
Showing 12 changed files with 89 additions and 7 deletions.
10 changes: 9 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
// swift-tools-version:5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.
// The swift-tools-version declares the minimum version of Swift required to build this package.
//
// This source file is part of the Apodini open source project
//
// SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de>
//
// SPDX-License-Identifier: MIT
//


import PackageDescription

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

This source file is part of the Apodini open source project

SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de>

SPDX-License-Identifier: MIT

8 changes: 8 additions & 0 deletions Sources/ApodiniDocumentExport/ExportOptions.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
//
// This source file is part of the Apodini open source project
//
// SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de>
//
// SPDX-License-Identifier: MIT
//

import Foundation
import ArgumentParser

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
//
// This source file is part of the Apodini open source project
//
// SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de>
//
// SPDX-License-Identifier: MIT
//

import Foundation
import PathKit
@_implementationOnly import Yams
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
//
// This source file is part of the Apodini open source project
//
// SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de>
//
// SPDX-License-Identifier: MIT
//

import Foundation
@_implementationOnly import FineJSON
@_implementationOnly import RichJSONParser
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
//
// This source file is part of the Apodini open source project
//
// SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de>
//
// SPDX-License-Identifier: MIT
//

import Foundation
import PathKit

Expand Down
8 changes: 8 additions & 0 deletions Sources/ApodiniDocumentExport/FileExtension.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
//
// This source file is part of the Apodini open source project
//
// SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de>
//
// SPDX-License-Identifier: MIT
//

import Foundation
import PathKit

Expand Down
8 changes: 8 additions & 0 deletions Sources/ApodiniDocumentExport/OutputFormat.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
//
// This source file is part of the Apodini open source project
//
// SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de>
//
// SPDX-License-Identifier: MIT
//

import Foundation

/// OutputFormat cases for encodable instances
Expand Down
8 changes: 8 additions & 0 deletions Sources/ApodiniDocumentExport/Value.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
//
// This source file is part of the Apodini open source project
//
// SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de>
//
// SPDX-License-Identifier: MIT
//

import Foundation

/// A protocol that requires conformance to `Codable` and `Hashable` (also `Equatable`)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
//
// ApodiniDocumentExportTests.swift
//
// This source file is part of the Apodini open source project
//
// SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de>
//
// Created by Valentin Bootz on 29.01.22.
// SPDX-License-Identifier: MIT
//


import Foundation
import XCTest
import PathKit
Expand Down
8 changes: 5 additions & 3 deletions Tests/ApodiniDocumentExportTests/Document.swift
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
//
// File.swift
//
// This source file is part of the Apodini open source project
//
// SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de>
//
// Created by Valentin Bootz on 29.01.22.
// SPDX-License-Identifier: MIT
//


import ApodiniDocumentExport

struct Document: Value {
Expand Down
7 changes: 7 additions & 0 deletions Tests/ApodiniDocumentExportTests/document.json.license
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

This source file is part of the Apodini open source project

SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de>

SPDX-License-Identifier: MIT

0 comments on commit 49418d9

Please sign in to comment.