From 34814956265ea03b8d1a0189668c27355513629c Mon Sep 17 00:00:00 2001 From: fankesyooni Date: Mon, 1 Jan 2024 01:46:51 +0800 Subject: [PATCH] docs: update copyright date to 2024 for all existing files --- README-zh-CN.md | 4 ++-- README.md | 4 ++-- .../main/java/com/highcapable/sweetproperty/SweetProperty.kt | 2 +- .../sweetproperty/gradle/entity/ProjectDescriptor.kt | 2 +- .../sweetproperty/gradle/factory/ExtensionAwareFactory.kt | 2 +- .../sweetproperty/gradle/factory/GradleProjectFactory.kt | 2 +- .../sweetproperty/gradle/proxy/IGradleLifecycle.kt | 2 +- .../sweetproperty/plugin/SweetPropertyExtension.kt | 2 +- .../highcapable/sweetproperty/plugin/SweetPropertyPlugin.kt | 2 +- .../sweetproperty/plugin/config/default/DefaultConfigs.kt | 2 +- .../plugin/config/factory/SweetPropertyConfigsFactory.kt | 2 +- .../plugin/config/proxy/ISweetPropertyConfigs.kt | 2 +- .../sweetproperty/plugin/config/type/GenerateLocationType.kt | 2 +- .../plugin/extension/accessors/proxy/IExtensionAccessors.kt | 2 +- .../dsl/configure/SweetPropertyConfigureExtension.kt | 2 +- .../plugin/generator/PropertiesAccessorsGenerator.kt | 2 +- .../plugin/generator/PropertiesSourcesGenerator.kt | 2 +- .../plugin/generator/factory/GeneratorFactory.kt | 2 +- .../sweetproperty/plugin/helper/PluginUpdateHelper.kt | 2 +- .../sweetproperty/plugin/helper/PropertiesDeployHelper.kt | 2 +- .../java/com/highcapable/sweetproperty/utils/FileFactory.kt | 2 +- .../java/com/highcapable/sweetproperty/utils/HttpFactory.kt | 2 +- .../com/highcapable/sweetproperty/utils/VariableFactory.kt | 2 +- .../com/highcapable/sweetproperty/utils/code/CodeCompiler.kt | 2 +- .../sweetproperty/utils/code/entity/MavenPomData.kt | 2 +- .../sweetproperty/utils/code/factory/CodeCompilerFactory.kt | 2 +- .../java/com/highcapable/sweetproperty/utils/debug/SError.kt | 2 +- .../java/com/highcapable/sweetproperty/utils/debug/SLog.kt | 2 +- .../kotlin/dsl/SweetPropertySettingsExtensionFactory.kt | 2 +- 29 files changed, 31 insertions(+), 31 deletions(-) diff --git a/README-zh-CN.md b/README-zh-CN.md index af99954..42f01fd 100644 --- a/README-zh-CN.md +++ b/README-zh-CN.md @@ -75,7 +75,7 @@ ``` Apache License Version 2.0 -Copyright (C) 2019-2023 HighCapable +Copyright (C) 2019-2024 HighCapable Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -90,4 +90,4 @@ See the License for the specific language governing permissions and limitations under the License. ``` -版权所有 © 2019-2023 HighCapable \ No newline at end of file +版权所有 © 2019-2024 HighCapable \ No newline at end of file diff --git a/README.md b/README.md index 0acc012..03da444 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ This project also uses **SweetDependency**. ``` Apache License Version 2.0 -Copyright (C) 2019-2023 HighCapable +Copyright (C) 2019-2024 HighCapable Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -96,4 +96,4 @@ See the License for the specific language governing permissions and limitations under the License. ``` -Copyright © 2019-2023 HighCapable \ No newline at end of file +Copyright © 2019-2024 HighCapable \ No newline at end of file diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/SweetProperty.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/SweetProperty.kt index e3db3ce..0b6d6e8 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/SweetProperty.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/SweetProperty.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/gradle/entity/ProjectDescriptor.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/gradle/entity/ProjectDescriptor.kt index fccfff8..1728227 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/gradle/entity/ProjectDescriptor.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/gradle/entity/ProjectDescriptor.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/gradle/factory/ExtensionAwareFactory.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/gradle/factory/ExtensionAwareFactory.kt index 1c94248..3636847 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/gradle/factory/ExtensionAwareFactory.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/gradle/factory/ExtensionAwareFactory.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/gradle/factory/GradleProjectFactory.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/gradle/factory/GradleProjectFactory.kt index 9d23816..3aca6ca 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/gradle/factory/GradleProjectFactory.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/gradle/factory/GradleProjectFactory.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/gradle/proxy/IGradleLifecycle.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/gradle/proxy/IGradleLifecycle.kt index 8150c9d..c4b1ddb 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/gradle/proxy/IGradleLifecycle.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/gradle/proxy/IGradleLifecycle.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/SweetPropertyExtension.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/SweetPropertyExtension.kt index a6d6cbb..f381307 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/SweetPropertyExtension.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/SweetPropertyExtension.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/SweetPropertyPlugin.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/SweetPropertyPlugin.kt index 641826e..aa2d2fe 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/SweetPropertyPlugin.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/SweetPropertyPlugin.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/config/default/DefaultConfigs.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/config/default/DefaultConfigs.kt index 141f690..6f78d70 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/config/default/DefaultConfigs.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/config/default/DefaultConfigs.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/config/factory/SweetPropertyConfigsFactory.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/config/factory/SweetPropertyConfigsFactory.kt index 8d22c48..d791c06 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/config/factory/SweetPropertyConfigsFactory.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/config/factory/SweetPropertyConfigsFactory.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/config/proxy/ISweetPropertyConfigs.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/config/proxy/ISweetPropertyConfigs.kt index 80adfd9..3909571 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/config/proxy/ISweetPropertyConfigs.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/config/proxy/ISweetPropertyConfigs.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/config/type/GenerateLocationType.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/config/type/GenerateLocationType.kt index 4872e79..93f2227 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/config/type/GenerateLocationType.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/config/type/GenerateLocationType.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/extension/accessors/proxy/IExtensionAccessors.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/extension/accessors/proxy/IExtensionAccessors.kt index 06262b8..c803a9f 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/extension/accessors/proxy/IExtensionAccessors.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/extension/accessors/proxy/IExtensionAccessors.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/extension/dsl/configure/SweetPropertyConfigureExtension.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/extension/dsl/configure/SweetPropertyConfigureExtension.kt index 894c8f3..0bfe9fe 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/extension/dsl/configure/SweetPropertyConfigureExtension.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/extension/dsl/configure/SweetPropertyConfigureExtension.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/generator/PropertiesAccessorsGenerator.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/generator/PropertiesAccessorsGenerator.kt index 9b074b5..386eea7 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/generator/PropertiesAccessorsGenerator.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/generator/PropertiesAccessorsGenerator.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/generator/PropertiesSourcesGenerator.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/generator/PropertiesSourcesGenerator.kt index 137419a..4a73f94 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/generator/PropertiesSourcesGenerator.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/generator/PropertiesSourcesGenerator.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/generator/factory/GeneratorFactory.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/generator/factory/GeneratorFactory.kt index f12ff52..cb17009 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/generator/factory/GeneratorFactory.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/generator/factory/GeneratorFactory.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/helper/PluginUpdateHelper.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/helper/PluginUpdateHelper.kt index 5b1b85b..f693f82 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/helper/PluginUpdateHelper.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/helper/PluginUpdateHelper.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/helper/PropertiesDeployHelper.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/helper/PropertiesDeployHelper.kt index 17fa759..8d504a4 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/helper/PropertiesDeployHelper.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/plugin/helper/PropertiesDeployHelper.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/FileFactory.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/FileFactory.kt index a5e925e..8e6e2ef 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/FileFactory.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/FileFactory.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/HttpFactory.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/HttpFactory.kt index e1d29a3..261f1e1 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/HttpFactory.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/HttpFactory.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/VariableFactory.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/VariableFactory.kt index 37a5a95..4301740 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/VariableFactory.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/VariableFactory.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/code/CodeCompiler.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/code/CodeCompiler.kt index 45a27e2..26a4658 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/code/CodeCompiler.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/code/CodeCompiler.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/code/entity/MavenPomData.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/code/entity/MavenPomData.kt index e855c54..1f085da 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/code/entity/MavenPomData.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/code/entity/MavenPomData.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/code/factory/CodeCompilerFactory.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/code/factory/CodeCompilerFactory.kt index 742a684..300010f 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/code/factory/CodeCompilerFactory.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/code/factory/CodeCompilerFactory.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/debug/SError.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/debug/SError.kt index 5725bbd..2b8c089 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/debug/SError.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/debug/SError.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/debug/SLog.kt b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/debug/SLog.kt index 71f5b1a..567bdeb 100644 --- a/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/debug/SLog.kt +++ b/sweetproperty-gradle-plugin/src/main/java/com/highcapable/sweetproperty/utils/debug/SLog.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0 diff --git a/sweetproperty-gradle-plugin/src/main/java/org/gradle/kotlin/dsl/SweetPropertySettingsExtensionFactory.kt b/sweetproperty-gradle-plugin/src/main/java/org/gradle/kotlin/dsl/SweetPropertySettingsExtensionFactory.kt index 53a7364..1f9479e 100644 --- a/sweetproperty-gradle-plugin/src/main/java/org/gradle/kotlin/dsl/SweetPropertySettingsExtensionFactory.kt +++ b/sweetproperty-gradle-plugin/src/main/java/org/gradle/kotlin/dsl/SweetPropertySettingsExtensionFactory.kt @@ -1,6 +1,6 @@ /* * SweetProperty - An easy get project properties anywhere Gradle plugin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/SweetProperty * * Apache License Version 2.0