Yannick Scherer
Yannick Scherer
A builder image to create Spring Boot JARs could be based on a JDK image and contain buld logic for the following tooling (i.e. via build profiles): - `mvn` -...
We should be able to print: - build base image - build user - build profiles - cached paths - ignored paths - runner settings (image, CMD/ENTRYPOINT) - build and...
Missing an actual spec for the schema language, the following might be a sufficient base for validation: - [Schema Language Cheetsheet](https://raw.githubusercontent.com/sogko/graphql-shorthand-notation-cheat-sheet/master/graphql-shorthand-notation-cheat-sheet.png) - official [Schemas and Types](http://graphql.org/learn/schema/) guide.
Reason: when checking if a dependency would suit an existing project (e.g. my project has a map of data somewhere and I want to serialize that data to JSON but...
Instead of listing all the files in all the JARs on the classpath (with exception of `~/.m2/...` which, btw, makes testing assets in such JARs on the REPL impossible), this...
Issue #83 showed that it's possible to have versions defined outside of the `project.clj` file. There are multiple cases where this could happen: - Using `lein-parent` to include e.g. `:managed-dependencies`...
Let's say I have the following in my `project.clj`: ``` clojure ... :eval-in :leiningen :profiles {:midje {:dependencies [[midje "1.5.1"]] :plugins [[lein-midje "3.1.3-RC2"]]}} ... ``` No tests are defined so far,...