bootique icon indicating copy to clipboard operation
bootique copied to clipboard

Bootique is a minimally opinionated platform for modern runnable Java apps.

Results 37 bootique issues
Sort by recently updated
recently updated
newest added

This was initially described in #292. Declared variables that pointed to an invalid path were excluded from help. This may actually be the correct behavior, but we need to notify...

I use the bootique flyway module to execute database migrations for 4 schemas (and 4 different locations) after each other and I want to minimise the number of scripts. My...

With "bootique-di" module override behavior has changed compared to Guice. I'd like to document it here so that there's a record of the status quo, as well a something for...

A bug... Assuming `a.array` is an empty array in configuration, you can populate it via `setProperty`: ```java BQCoreModule.extender(b) .property("bq.a.array[0]", "J") .property("bq.a.array[1]", "A") .property("bq.a.array[2]", "Z") ``` This often throws ArrayIndexOutOfBoundsException, because...

bug

We already allow to explicitly suppress module commands: ```java BQModuleProvider commands = Commands .builder(HelpCommand.class, HelpConfigCommand.class) .noModuleCommands() .build(); ``` Would be also useful to suppress module *options*. E.g. Liquibase module defines...

Purpose of the [Bootique Examples](https://github.com/bootique-examples/) organization to collect examples of the use of bootique modules. ## Missing Examples Not all modules are present in the organization, so we need to...

```java BQCoreModule.extend(binder) .addCommand(cli -> CommandOutcome.suceeded()); ``` The code above results in the an exception below, because command lambda has no metadata. At the minimum we need to pre-validate this case...

Unsure if this has been considered before, but it may be interesting to replace joptsimple with [picocli](https://picocli.info). There could be several benefits, depending on whether this is limited to an...

Application choose random config file if several modules have config.yml files for same path in classpath