Closed 0101a1a closed 1 month ago
It's not released yet, although I plan to soon. You can use it now with the latest snapshot build. If you do, I'd love to hear any feedback you have.
Just checking in now that it's almost mid September. I'm experimenting with snapshots locally and they seem to be working fine, but I'm a bit concerned about releasing software on top of a snapshot build (especially since I was using 4.4.0.25-SNAPSHOT recently and just updated to 41-SNAPSHOT and got a handful of compile errors, so it's clear that things are still being experimented with).
As an aside, how come NoOpCliktCommand
is now part of the mordant module now and not core?
I've been working on a major version of mordant, which I released this past weekend. Now that that's done, I can update clikt to use it and make a release of Clikt.
how come NoOpCliktCommand is now part of the mordant module now and not core?
Congrats! I'm certainly not under any urgent pressure, so please don't rush on my account. Feel free to bask in the well-deserved relief of a major release for as long as you'd like :) And thanks for your hard work.
Not sure why I wasn't seeing the NoOpCliktCommand
in the core module; maybe it was a Gradle sync issue? I'll check again later.
The one in the core module is called NoOpCoreCliktCommand
to match all the other CoreCliktCommand
s. The NoOpCliktCommand
is in the mordant module because it uses the mordant help formatter.
NoOpCliktCommand
was part of the Mordant module, then moved to the core. It didn't use the Mordant help formatter, so renamed to CoreNoOpCliktCommand
and then a copy of it made in Mordant module with the name NoOpCliktCommand
.
Looking at clikt module, it provide the following code snippet:
Using:
Would give error:
I already declared
mavenCentral()
.Does this module have a different version or it's something meant to be used internally?