From a753493ff55314f4f9c74e5cc63d7d6d413b030e Mon Sep 17 00:00:00 2001 From: "Marc B." <125284318+M-Busk@users.noreply.github.com> Date: Tue, 18 Feb 2025 14:36:12 +0100 Subject: [PATCH] add copyright to all relevant files (#23) --- .github/workflows/continious_integration.yml | 14 +++++++++++ LICENSE | 25 ------------------- connector/Dockerfile | 14 +++++++++++ connector/resources/config.properties | 14 +++++++++++ .../consumer-configuration.properties | 14 +++++++++++ .../provider-configuration.properties | 14 +++++++++++ deployment/helm/possible-x-edc/Chart.yaml | 14 +++++++++++ .../possible-x-edc/templates/configmap.yaml | 14 +++++++++++ .../possible-x-edc/templates/db_service.yaml | 14 +++++++++++ .../templates/db_stateful_set.yaml | 14 +++++++++++ .../possible-x-edc/templates/deployment.yaml | 14 +++++++++++ .../helm/possible-x-edc/templates/hpa.yaml | 14 +++++++++++ .../possible-x-edc/templates/ingress.yaml | 14 +++++++++++ .../possible-x-edc/templates/service.yaml | 14 +++++++++++ .../templates/serviceaccount.yaml | 14 +++++++++++ .../templates/tests/test-connection.yaml | 14 +++++++++++ deployment/helm/possible-x-edc/values.yaml | 14 +++++++++++ deployment/helm/template.yaml | 14 +++++++++++ deployment/pg_admin/pg_admin.yaml | 14 +++++++++++ gradle.properties | 14 +++++++++++ gradle/wrapper/gradle-wrapper.properties | 14 +++++++++++ policy-extension/build.gradle.kts | 16 ++++++++++++ .../ClientClaimConstraintFunction.java | 16 ++++++++++++ ...egotiationContractExpiryCheckFunction.java | 1 + .../PossiblePolicyExtension.java | 1 + settings.gradle.kts | 16 ++++++++++++ 26 files changed, 330 insertions(+), 25 deletions(-) diff --git a/.github/workflows/continious_integration.yml b/.github/workflows/continious_integration.yml index a382c88..5025d7a 100644 --- a/.github/workflows/continious_integration.yml +++ b/.github/workflows/continious_integration.yml @@ -1,3 +1,17 @@ +# Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + name: Build and Deploy EDC to Cluster on: push: diff --git a/LICENSE b/LICENSE index 261eeb9..d9a10c0 100644 --- a/LICENSE +++ b/LICENSE @@ -174,28 +174,3 @@ of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/connector/Dockerfile b/connector/Dockerfile index 66b4849..b98b89d 100644 --- a/connector/Dockerfile +++ b/connector/Dockerfile @@ -1,3 +1,17 @@ +# Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + # -buster is required to have apt available FROM openjdk:17-slim-buster diff --git a/connector/resources/config.properties b/connector/resources/config.properties index 6320cd0..22465cf 100644 --- a/connector/resources/config.properties +++ b/connector/resources/config.properties @@ -1,3 +1,17 @@ +# Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + edc.participant.id=possible edc.dsp.callback.address=http://localhost:8183/protocol web.http.port=8181 diff --git a/connector/resources/consumer-configuration.properties b/connector/resources/consumer-configuration.properties index 5774f12..354fa24 100644 --- a/connector/resources/consumer-configuration.properties +++ b/connector/resources/consumer-configuration.properties @@ -1,3 +1,17 @@ +# Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + web.http.port=29191 web.http.path=/api web.http.management.port=29193 diff --git a/connector/resources/provider-configuration.properties b/connector/resources/provider-configuration.properties index 05429a9..fdd23fc 100644 --- a/connector/resources/provider-configuration.properties +++ b/connector/resources/provider-configuration.properties @@ -1,3 +1,17 @@ +# Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + web.http.port=19191 web.http.path=/api web.http.management.port=19193 diff --git a/deployment/helm/possible-x-edc/Chart.yaml b/deployment/helm/possible-x-edc/Chart.yaml index e182ef7..f8f60b9 100644 --- a/deployment/helm/possible-x-edc/Chart.yaml +++ b/deployment/helm/possible-x-edc/Chart.yaml @@ -1,3 +1,17 @@ +# Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + apiVersion: v2 name: possible-x-edc description: A Helm chart for Kubernetes diff --git a/deployment/helm/possible-x-edc/templates/configmap.yaml b/deployment/helm/possible-x-edc/templates/configmap.yaml index bd0df89..486429a 100644 --- a/deployment/helm/possible-x-edc/templates/configmap.yaml +++ b/deployment/helm/possible-x-edc/templates/configmap.yaml @@ -1,3 +1,17 @@ +# Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + apiVersion: v1 kind: ConfigMap metadata: diff --git a/deployment/helm/possible-x-edc/templates/db_service.yaml b/deployment/helm/possible-x-edc/templates/db_service.yaml index 7917298..43587be 100644 --- a/deployment/helm/possible-x-edc/templates/db_service.yaml +++ b/deployment/helm/possible-x-edc/templates/db_service.yaml @@ -1,3 +1,17 @@ +# Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + {{- if .Values.persistence.db.enabled -}} apiVersion: v1 diff --git a/deployment/helm/possible-x-edc/templates/db_stateful_set.yaml b/deployment/helm/possible-x-edc/templates/db_stateful_set.yaml index 6269ddb..335b3a9 100644 --- a/deployment/helm/possible-x-edc/templates/db_stateful_set.yaml +++ b/deployment/helm/possible-x-edc/templates/db_stateful_set.yaml @@ -1,3 +1,17 @@ +# Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + {{- if .Values.persistence.db.enabled -}} apiVersion: apps/v1 kind: StatefulSet diff --git a/deployment/helm/possible-x-edc/templates/deployment.yaml b/deployment/helm/possible-x-edc/templates/deployment.yaml index a71d645..8b3dfa6 100644 --- a/deployment/helm/possible-x-edc/templates/deployment.yaml +++ b/deployment/helm/possible-x-edc/templates/deployment.yaml @@ -1,3 +1,17 @@ +# Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + apiVersion: apps/v1 kind: Deployment metadata: diff --git a/deployment/helm/possible-x-edc/templates/hpa.yaml b/deployment/helm/possible-x-edc/templates/hpa.yaml index eb66993..01ab87e 100644 --- a/deployment/helm/possible-x-edc/templates/hpa.yaml +++ b/deployment/helm/possible-x-edc/templates/hpa.yaml @@ -1,3 +1,17 @@ +# Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + {{- if .Values.autoscaling.enabled }} apiVersion: autoscaling/v2beta1 kind: HorizontalPodAutoscaler diff --git a/deployment/helm/possible-x-edc/templates/ingress.yaml b/deployment/helm/possible-x-edc/templates/ingress.yaml index cd95bfc..c73023b 100644 --- a/deployment/helm/possible-x-edc/templates/ingress.yaml +++ b/deployment/helm/possible-x-edc/templates/ingress.yaml @@ -1,3 +1,17 @@ +# Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + {{- if .Values.ingress.enabled -}} {{- $fullName := include "possible-x-edc.fullname" . -}} {{- $svcPort := .Values.service.port -}} diff --git a/deployment/helm/possible-x-edc/templates/service.yaml b/deployment/helm/possible-x-edc/templates/service.yaml index c8091ff..65f7716 100644 --- a/deployment/helm/possible-x-edc/templates/service.yaml +++ b/deployment/helm/possible-x-edc/templates/service.yaml @@ -1,3 +1,17 @@ +# Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + apiVersion: v1 kind: Service metadata: diff --git a/deployment/helm/possible-x-edc/templates/serviceaccount.yaml b/deployment/helm/possible-x-edc/templates/serviceaccount.yaml index 8649bcd..6f8ea5f 100644 --- a/deployment/helm/possible-x-edc/templates/serviceaccount.yaml +++ b/deployment/helm/possible-x-edc/templates/serviceaccount.yaml @@ -1,3 +1,17 @@ +# Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + {{- if .Values.serviceAccount.create -}} apiVersion: v1 kind: ServiceAccount diff --git a/deployment/helm/possible-x-edc/templates/tests/test-connection.yaml b/deployment/helm/possible-x-edc/templates/tests/test-connection.yaml index 5cdc640..288e911 100644 --- a/deployment/helm/possible-x-edc/templates/tests/test-connection.yaml +++ b/deployment/helm/possible-x-edc/templates/tests/test-connection.yaml @@ -1,3 +1,17 @@ +# Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + apiVersion: v1 kind: Pod metadata: diff --git a/deployment/helm/possible-x-edc/values.yaml b/deployment/helm/possible-x-edc/values.yaml index f64c7b8..e09b8ad 100644 --- a/deployment/helm/possible-x-edc/values.yaml +++ b/deployment/helm/possible-x-edc/values.yaml @@ -1,3 +1,17 @@ +# Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + # Default values for possible-x-edc # This is a YAML-formatted file. # Declare variables to be passed into your templates. diff --git a/deployment/helm/template.yaml b/deployment/helm/template.yaml index fc987a5..43f408a 100644 --- a/deployment/helm/template.yaml +++ b/deployment/helm/template.yaml @@ -1,3 +1,17 @@ +# Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + edc: ionos: accessKey: ${EDC_S3_ACCESS_KEY} diff --git a/deployment/pg_admin/pg_admin.yaml b/deployment/pg_admin/pg_admin.yaml index 5d3da3d..116adcf 100644 --- a/deployment/pg_admin/pg_admin.yaml +++ b/deployment/pg_admin/pg_admin.yaml @@ -1,3 +1,17 @@ +# Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + apiVersion: apps/v1 kind: Deployment metadata: diff --git a/gradle.properties b/gradle.properties index 635a943..e2e4219 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,17 @@ +# Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + javaVersion=17 edcGroup=org.eclipse.edc edcVersion=0.4.1 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 8ddcceb..1e0ce3c 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,3 +1,17 @@ +# Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip diff --git a/policy-extension/build.gradle.kts b/policy-extension/build.gradle.kts index ac6d31c..744c91b 100644 --- a/policy-extension/build.gradle.kts +++ b/policy-extension/build.gradle.kts @@ -1,3 +1,19 @@ +/* + * Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + plugins { `java-library` id("application") diff --git a/policy-extension/src/main/java/org/eclipse/edc/extension/possiblepolicy/ClientClaimConstraintFunction.java b/policy-extension/src/main/java/org/eclipse/edc/extension/possiblepolicy/ClientClaimConstraintFunction.java index 1c43806..6f51283 100644 --- a/policy-extension/src/main/java/org/eclipse/edc/extension/possiblepolicy/ClientClaimConstraintFunction.java +++ b/policy-extension/src/main/java/org/eclipse/edc/extension/possiblepolicy/ClientClaimConstraintFunction.java @@ -1,3 +1,19 @@ +/* + * Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package org.eclipse.edc.extension.possiblepolicy; import org.eclipse.edc.policy.engine.spi.AtomicConstraintFunction; diff --git a/policy-extension/src/main/java/org/eclipse/edc/extension/possiblepolicy/NegotiationContractExpiryCheckFunction.java b/policy-extension/src/main/java/org/eclipse/edc/extension/possiblepolicy/NegotiationContractExpiryCheckFunction.java index 44b4b48..054ceb2 100644 --- a/policy-extension/src/main/java/org/eclipse/edc/extension/possiblepolicy/NegotiationContractExpiryCheckFunction.java +++ b/policy-extension/src/main/java/org/eclipse/edc/extension/possiblepolicy/NegotiationContractExpiryCheckFunction.java @@ -1,5 +1,6 @@ /* * Copyright (c) 2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) + * Copyright 2024-2025 Dataport. All rights reserved. Extended as part of the POSSIBLE project. * * This program and the accompanying materials are made available under the * terms of the Apache License, Version 2.0 which is available at diff --git a/policy-extension/src/main/java/org/eclipse/edc/extension/possiblepolicy/PossiblePolicyExtension.java b/policy-extension/src/main/java/org/eclipse/edc/extension/possiblepolicy/PossiblePolicyExtension.java index 03c0734..c29fe6b 100644 --- a/policy-extension/src/main/java/org/eclipse/edc/extension/possiblepolicy/PossiblePolicyExtension.java +++ b/policy-extension/src/main/java/org/eclipse/edc/extension/possiblepolicy/PossiblePolicyExtension.java @@ -1,5 +1,6 @@ /* * Copyright (c) 2021 Microsoft Corporation + * Copyright 2024-2025 Dataport. All rights reserved. Extended as part of the POSSIBLE project. * * This program and the accompanying materials are made available under the * terms of the Apache License, Version 2.0 which is available at diff --git a/settings.gradle.kts b/settings.gradle.kts index a02176d..1d4f7f2 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,3 +1,19 @@ +/* + * Copyright 2024-2025 Dataport. All rights reserved. Developed as part of the POSSIBLE project. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /* * This file was generated by the Gradle 'init' task. *