Norbert Kiesel
Norbert Kiesel
I added it at line 1 in `settings.gradle`: ``` plugins { id("com.pablisco.gradle.automodule") version "0.15" } ``` The error I get is: > * Where: > Settings file '/home/nkiesel/work/Platform/settings.gradle' line: 1...
Any suggestions on how to proceed?
tried to do that by adding some code to Location.parse, but first problem is that the repo is a mandatory positional argument to most commands, and for some reason a...
I would perfer the Kotlin DSL solution because it opens the paths to computations/logic in the configuration (e.g. produce a list from a pattern and some exceptions instead of listing...
Same here. I just switched my code to snakeyaml because that handles anchors/refs correctly. Which is strange because jackson-dataformats-yaml is using snakeyaml internally
YAML only allows backward references: spec says "It is an error for an alias node to use an anchor that does not previously occur in the document." ("alias" node here...
Interesting (I'm still trying to process all the info from #120 and #121). A JSON array and a JSON object are both `JsonNode`, correct? For reference, here is a (shortened)...
Should this not also get the `3.x` label?
Your JSON is close, you just have one extra pair of `{}` inside the `vertices` array and a missing pair of `[]` inside the `edges`: ```json { "vertices": [ {"name":"V1","description":"First...
Attached are 2 little Python scripts (renamed to ".txt" to be able to attach them) I use for converting between JSON and YAML. One caveat is that `j2y` does not...