Ivan Porto Carrero
Ivan Porto Carrero
I'll try again later with a simpler project
I think you can trigger the case if you have a project reference to a sub project in a sibling directory which has a git dependency. so ./library ./backend ./rl...
It seems the projects that depend on the backchat-sbt plugin in the `project/project/plugins.scala` are the ones that are affected. But those are also the ones without project references
I'll try to do this this weekend. I run this in the parent of alll the projects. ``` bash #!/bin/zsh if [ "x$MOJOLLY_HOME" = "x" ]; then echo "Did you...
In total it are about 40 projects: http://cl.ly/1a3l1g160J230S17181a
I'll first try with the aggregate project at the parent level that may sort everything out if I understand correctly
it's a long diff https://gist.github.com/99273257a8ac2179efd5 the aggegate build looks like this: project/project/plugins.scala ``` scala import sbt._ import Keys._ object PluginsBuild extends Build { lazy val root = Project("plugins", file(".")) dependsOn...
The UseSwaggerUI is a toggle between a redoc docs site and a swagger ui docs site. https://github.com/go-swagger/go-swagger/blob/922497f70e5bde7fa3e0a1e34f104845ffa322f6/examples/tutorials/todo-list/server-complete/restapi/operations/todo_list_api.go#L123-L131 if you want to disable /docs you can use a global middleware that...
That is because you're using object embedding. If you want this named then you shouldn't rely on object composition but name your property instead. ```go type Outer struct { OuterField...
yes please add this