John Poth

Results 25 comments of John Poth
trafficstars

Hi @Hades-888 , It seems the command line parsing library [viper](https://github.com/spf13/viper) we use will set boolean flags to `true` if present regardless of the value passed... so `--boolean-flag-name false` will...

@Hades-888 yes you should be fine because when undefined it gets treated as the default value which is `false`, thanks ! It's interesting to see boolean values getting special treatment...

Probably a silly question but isn't this what the [Service Binding Operator](https://github.com/redhat-developer/service-binding-operator) was suppose to do ? Or is this just a better way of achieving binding ? Thanks!

Thanks @squakez ! I was about to create some follow up stories! So I think the example could easily be constructed from one of the IT [test](https://github.com/apache/camel-k/blob/d6660dc7a2bda3b824b24ae5f80ccf15cc6e305e/e2e/registry/registry_maven_wagon_test.go#L123). Mentioning CLI [configuration](https://github.com/apache/camel-k/blob/26423a26f5244170912df372214d60e92602c4d5/docs/modules/ROOT/pages/cli/cli.adoc#image-registry)...

Ideally the example should showcase both a JAR and some sort of a data [file](https://github.com/apache/camel-k/blob/d6660dc7a2bda3b824b24ae5f80ccf15cc6e305e/e2e/registry/registry_maven_wagon_test.go#L92) (maybe a CSV)

Hi @NickDeGraeve ! So the plugin works by gathering all your `Maven` module's `dependencies` and start a `Jshell` session with those dependencies in the `classpath`. In that sense it's not...

Hi @lburgazzoli, As an immediate solution, it is possible to distribute camel-k artifacts as images using the [wagon-docker-registry](https://github.com/johnpoth/wagon-docker-registry) (e.g _mvn deploy_ to docker.io) which is already integrated with camel-k via...

Hi @developerworks, it doesn't seem JShell supports that? When adding JARs or modules on the class-path/module path, JShell doesn't seem to resolve anything with auto completion except when coming from...

nice @developerworks ! Does this provide auto completion? The script seems to add the JAR dependencies to JShell's class-path which didn't provide auto completion for me. Thanks!