From e71d59fe92c5b39293830ed3416a4db8ac8a369a Mon Sep 17 00:00:00 2001 From: Stamatis Zampetakis Date: Wed, 8 Nov 2023 13:22:24 +0100 Subject: [PATCH] [CALCITE-6097] Gridism CSS dependency is mispelled in LICENSE The website uses the gridism.css style for presentation purposes. The file is present in git and also in the source distribution of Calcite so it should have a proper reference in the LICENSE file. There is an entry in the LICENSE file but it is mispelled: gridsim vs gridism Close apache/calcite#3509 --- LICENSE | 2 +- release/build.gradle.kts | 2 +- src/main/config/licenses/{gridsim => gridism}/LICENSE | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename src/main/config/licenses/{gridsim => gridism}/LICENSE (100%) diff --git a/LICENSE b/LICENSE index af260a722fc7..efcd7e51a2ea 100644 --- a/LICENSE +++ b/LICENSE @@ -182,6 +182,6 @@ Additional License files can be found in the 'licenses' folder located in the sa MIT * font-awesome:font-awesome-code:4.2.0 -* gridsim:gridsim: +* cobyism:gridism: * jekyll:jekyll: * normalize:normalize:3.0.2 diff --git a/release/build.gradle.kts b/release/build.gradle.kts index 4d26eed00065..26a4b109fbad 100644 --- a/release/build.gradle.kts +++ b/release/build.gradle.kts @@ -107,7 +107,7 @@ val getLicenses by tasks.registering(GatherLicenseTask::class) { addDependency(":normalize:3.0.2", SpdxLicense.MIT) // Gridism: A simple, responsive, and handy CSS grid by @cobyism // https://github.com/cobyism/gridism - addDependency(":gridsim:", SpdxLicense.MIT) + addDependency("cobyism:gridism:", SpdxLicense.MIT) } val license by tasks.registering(Apache2LicenseRenderer::class) { diff --git a/src/main/config/licenses/gridsim/LICENSE b/src/main/config/licenses/gridism/LICENSE similarity index 100% rename from src/main/config/licenses/gridsim/LICENSE rename to src/main/config/licenses/gridism/LICENSE