Adam Klinkosz
Adam Klinkosz
Currently, the only way to override automatic version number guessing is to issue the following : ``` bash gradle release -PreleaseVersion=2.0.0-SNAPSHOT ``` It would be nice though, to pass just...
Trying to install: ```bash go get -u github.com/mlabouardy/nexus-cli ``` Results in: ``` package github.com/cpuguy83/go-md2man/v2/md2man: cannot find package "github.com/cpuguy83/go-md2man/v2/md2man" in any of: /usr/local/go/src/github.com/cpuguy83/go-md2man/v2/md2man (from $GOROOT) /go/src/github.com/cpuguy83/go-md2man/v2/md2man (from $GOPATH) ```
In configuration it would be great to see a wildcard support for topics. For example: * `example*` - listens on all topics with the name beginning with "example". * `*`...
For example: ```java DockerRule.builder() .image("some-image") .ports("1521:1521") .build(); ``` I cannot have random ports on host since the image is used to create a datasource in a Spring `@Configuration` before the...
Need to be able to pass more parameters to Docker when running a container, for example `--shm-size`.
My `wsdl2java{}` definition: ``` gradle wsdl2java { generatedWsdlDir = file("$projectDir/src/generated") wsdlDir = file("$projectDir/src/resources/wsdl") wsdlsToGenerate = getWsdlDefinitions() } ``` As you can see the `wsdlsToGenerate` is built dynamically by other function...