Closed StefMa closed 1 month ago
I guess I found the problem. The license.json file has different "seeAlso" URLs. 1.10.0 (as commit because it renders better in GH):
vs
So the URL https://opensource.org/licenses/MIT
is not catched as valid MIT license anymore 😳
Is that an intendet behavior? 🤔 Given that it is defined as a fallbackUrl? 🤔 https://github.com/cashapp/licensee/blob/061ed1983e15046d154bd3d6f0b42072d4fe9285/gradle/build-logic/src/main/kotlin/app/cash/licensee/defaultFallbackUrls.kt#L44-L53
Alright.
This is fixed in trunk
already.
The problem is in 1.11.0 that that URL changed in the licenses.json
but was not added to the fallbackUrls
.
In trunk
the old valid url "https://opensource.org/licenses/MIT"
is added to the falbackUrls.
With that said, 1.11.0 is broken because of this, all other versions working fine 🙃
Goind to close this, but would wish for a new release because of this 🙈 😁
Released 1.12 with the fix.
Hey there,
starting with 1.11.0 we get a false positive report with the following error message:
When checking the output
artifacts.json
in<= 1.10
I see:while on 1.11.0 I get:
MIT
is a valid identifier according to https://spdx.org/licenses/. The POM for that artifacts ooks also fine for me: https://repo1.maven.org/maven2/com/ioki/textref/textref/3.0.0/textref-3.0.0.pomI haven't spotted anything that cause this in this diff https://github.com/cashapp/licensee/compare/1.10.0...1.11.0 🤷
Any help would be appreciated 😇