Stevo Slavić
Stevo Slavić
There's a gitter link on https://github.com/travisjeffery/jocko#jocko
@candlerb FYI https://thehoard.blog/building-a-kafka-that-doesnt-depend-on-zookeeper-2c4701b6e961
At the moment I'm using: ``` releaseVersionBump := { System.getProperty("releaseVersionBump", "default") match { case "major" => sbtrelease.Version.Bump.Major case "minor" => sbtrelease.Version.Bump.Minor case "bugfix" => sbtrelease.Version.Bump.Bugfix case "default" => sbtrelease.Version.Bump.default }},...
I'm using following custom step to do this: ``` lazy val generateReleaseProperties = ReleaseStep(action = st => { // extract the build state val extracted = Project.extract(st) // retrieve the...
Thanks for sharing the idea! What if class X is class from 3rd party library?
If I'm not mistaken, rest-assured only has sync APIs (e.g. there's get but not getAsync or something), so then only (sync) HttpClientBuilder needs to be supported. If considering to make...
From the two that I mentioned, which approach would you prefer, which makes sense from your persepective, first (sync apache http client only) or second (plugable high level abstraction)?
I've seen the multi-module example before opening this ticket. Unfortunatelly that example is fundamentally broken, it mixes up dependencies from both modules into one package. That happens even if root...
@skipoleschris Maybe http://templemore.co.uk/repo/ is the only one that works now, but consider making https work as well (and only option), and no self-signed certs, but proper CA signed; otherwise consider...
@stevehipwell PTAL