Jesse Kinkead

Results 12 issues of Jesse Kinkead

Code compiled against 1.3.1 will throw an exception trying to find `optionFormat` if it's running using 1.3.2: ``` [error] Exception in thread "main" java.lang.NoSuchMethodError: spray.json.DefaultJsonProtocol$.optionFormat(Lspray/json/JsonFormat;)Lspray/json/StandardFormats$OptionFormat; ``` See [this change](https://github.com/spray/spray-json/commit/df74b880deef967465d981a1f688dc8936cf0a84#diff-d0bebea2333c9c6b3f51290674174ed5) for...

Add a package variable to hold the survey output writer and a setter for it. Add a helper to generate a survey option using the writer for stdout. Initialize the...

Prompts for user input always go to stdout, even though the default non-Windows output stream is stderr. This breaks the `script` command and the `login --credential-process` commands, since the prompts...

The [go-openapi](https://github.com/go-openapi) group has very rich Swagger support, particularly for parsing & resolving references. It might make sense to rewrite the generation logic to use this library, instead of re-writing...

This fixes #61 , but at the expense of being sloppy with artifact validation. Feel free to close if you think this is unacceptable.

cla: yes

This correctly honors the `replace` parameter. It was ignored before, which was making it effectively be treated as `false`. Per [the reference implementation](https://github.com/apache/maven/blob/542a7a89156263b34d1472e9d9c1a2795afccd2d/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelResolver.java#L113-L144), the single-argument `addRepository` should not replace (although...

cla: yes

This adds support for repositories in the local file system. Fixes #64 .

cla: yes

A `repository` pointing at the filesystem fails to resolve any dependencies, due to some assumptions made about POM file locations. I have a fix for this (although it only works...

This bug may just be "interpolation does not happen anywhere", but I'm specifically running into issues with local repositories like this: ```xml 4.0.0 project.local project file:${project.basedir}/repo com.example example 0.1.0-SNAPSHOT pom...

Having a dependency on a parent project with only a POM file fails due to the fact that parent projects are resolved using `requestVersionList`. This project will fail with the...