Ned Twigg
Ned Twigg
That's okay! Jooby is a great project, and we can fix this, but it is a serious problem. If I open an incognito tab, and search "jooby", the top hit...
Sonatype was [notified](https://issues.sonatype.org/browse/OSSRH-12213), so the mavencentral artifacts will remain safe. There are a lot of tutorials based on 1.x, those will probably remain risky unfortunately.
I was able to run JSweet on Java 17 by adding the following to `gradle.properties`: ``` org.gradle.jvmargs=-Dfile.encoding=UTF-8 \ --add-opens jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \ --add-opens jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED \ --add-opens jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED \ --add-opens jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED \...
My workaround has to be added to the `gradle.properties` of the project that is using JSweet, I don't know of a way to implement this fix as a PR.
Ah, thanks. For my usecase, we have a server written and executing in Java. We use jsweet to transpile datatypes to typescript. This makes it very easy to have strongly-typed...
I recently shipped [spotless-changelog](https://github.com/diffplug/spotless-changelog). If you happen to have used the [spotless](https://github.com/diffplug/spotless) code formatter, it's the same idea, but for the keepachangelog format. There's a gradle plugin, and also a...
There are lots of great reasons to parse a changelog! I just released [spotless-changelog](https://github.com/diffplug/spotless-changelog), which is a keepachangelog round-trip-parser for the JVM ([javadoc](https://javadoc.jitpack.io/com/github/diffplug/spotless-changelog/spotless-changelog-agg/release~1.1.0/javadoc/com/diffplug/spotless/changelog/Changelog.html)), along with a gradle plugin. It uses...
On windows, the just-released `0.34.0` is giving me `Could not find docker-compose`, even though `docker-compose.exe` is right on the path. Seems like this PR would fix it.
Google's [errorprone can generate](https://errorprone.info/docs/patching) a standard unified diff patch file. We can't do it currently, but we could pretty easily build to that spec.
If you're using ktlint through Spotless, we just added support for on/off tags in `plugin-gradle 5.5.0` ([like this](https://github.com/diffplug/spotless/tree/main/plugin-gradle#spotlessoff-and-spotlesson)) and `plugin-maven 2.3.0` ([like this](https://github.com/diffplug/spotless/tree/main/plugin-maven#spotlessoff-and-spotlesson)).