typelevel / typelevel.g8

A typelevel.g8 based on sbt-typelevel
https://typelevel.org/sbt-typelevel/
14 stars 5 forks source link

Fix g8Testing #137

Closed TonioGela closed 3 months ago

TonioGela commented 3 months ago

So, apparently giter8 recently introduced some kind of regression, or at least now there's a required change in all g8Templates that is to remove .enablePlugins(ScriptedPlugin) from the project, as was found out and reported here.

The sad side effect of this regression is that now g8Test is a no-op, and taking a look recent builds confirms that.

This PR removes that plugin and fixes the scripted tests

valencik commented 3 months ago

Hey @TonioGela thanks for this. Could you say more about the "and fixes the scripted tests" bit?

So g8Test is still a no-op until something is fixed upstream?

TonioGela commented 3 months ago

So g8Test is still a no-op until something is fixed upstream?

Yes. To the best of my understanding what happened is this:

I can't tell if upstream will get fixed or if the new standard for g8 plugins will become not declaring the ScriptedPlugin, what I can tell you is that I amended the giter8's giter8 official template in this PR and Eugene merged it already.