From e38a6e35e5c9d07f156c0e73bca9103711168ca7 Mon Sep 17 00:00:00 2001 From: Jendrik Johannes Date: Mon, 15 Jul 2024 09:40:49 +0200 Subject: [PATCH] Add header comments --- .../JavaModuleDependenciesSettingsPlugin.java | 16 ++++++++++++++++ .../dependencies/initialization/Module.java | 16 ++++++++++++++++ .../dependencies/initialization/Modules.java | 16 ++++++++++++++++ 3 files changed, 48 insertions(+) diff --git a/src/main/java/org/gradlex/javamodule/dependencies/initialization/JavaModuleDependenciesSettingsPlugin.java b/src/main/java/org/gradlex/javamodule/dependencies/initialization/JavaModuleDependenciesSettingsPlugin.java index 0b4b91e..e733ca2 100644 --- a/src/main/java/org/gradlex/javamodule/dependencies/initialization/JavaModuleDependenciesSettingsPlugin.java +++ b/src/main/java/org/gradlex/javamodule/dependencies/initialization/JavaModuleDependenciesSettingsPlugin.java @@ -1,3 +1,19 @@ +/* + * Copyright the GradleX team. + * + * 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.gradlex.javamodule.dependencies.initialization; import org.gradle.api.NonNullApi; diff --git a/src/main/java/org/gradlex/javamodule/dependencies/initialization/Module.java b/src/main/java/org/gradlex/javamodule/dependencies/initialization/Module.java index ee2ff1b..5aaec5b 100644 --- a/src/main/java/org/gradlex/javamodule/dependencies/initialization/Module.java +++ b/src/main/java/org/gradlex/javamodule/dependencies/initialization/Module.java @@ -1,3 +1,19 @@ +/* + * Copyright the GradleX team. + * + * 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.gradlex.javamodule.dependencies.initialization; import org.gradle.api.provider.ListProperty; diff --git a/src/main/java/org/gradlex/javamodule/dependencies/initialization/Modules.java b/src/main/java/org/gradlex/javamodule/dependencies/initialization/Modules.java index 6d70ad5..eb497f7 100644 --- a/src/main/java/org/gradlex/javamodule/dependencies/initialization/Modules.java +++ b/src/main/java/org/gradlex/javamodule/dependencies/initialization/Modules.java @@ -1,3 +1,19 @@ +/* + * Copyright the GradleX team. + * + * 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.gradlex.javamodule.dependencies.initialization; import org.gradle.api.Action;