Bill Barni

Results 4 issues of Bill Barni

Installed the app from the Play Store and it is stuck at the splash screen.

I am trying to execute this: ``` executeMojo( plugin( groupId("org.codehaus.mojo"), artifactId("build-helper-maven-plugin"), version("3.3.0") ), goal("add-source"), configuration( element(name("sources"), element(name("source"), getOutputDirectory().getPath()) ) ), executionEnvironment( project, mavenSession, pluginManager ) ); ``` But the folder...

Hello, sorry to bother you with this. Thank you for this repository, very good code. But there is no license and the repo is set as private. Can I use...

**Describe the bug** When registering JobWorkers manually: ``` @Component @Log public class SomeWorker { @Value("${zeebe.workers.someWorker.jobType}") private String jobType; @Autowired private ZeebeClient zeebeClient; @PostConstruct public void registerWorker() { zeebeClient.newWorker() .jobType(jobType) .handler((jobClient,...