Vyacheslav Rusakov
Vyacheslav Rusakov
[7.2.0 released](https://xvik.github.io/dropwizard-guicey/7.2.0/about/release-notes/). It now supports [private modules](https://xvik.github.io/dropwizard-guicey/7.2.0/guide/guice/module-analysis/#private-modules), so in your case it should detect extensions from exposed bindings. Also, there is now an option to [detect extensions in protected and...
I'm not working with kotlin but, after a quick googling, I found lazy variables: ```kotlin val versionValue: String by lazy { project.version } mkdocs { extras = [ 'version': "$versionValue",...
I'm on vacation now, will look this next week
So sorry for the late answer.. too many work after vacation. Thank you very much for a detailed description! `pipInstall` would be `UP_TO_DATE` either when there is no manual modules...
[4.0.0 released](https://github.com/xvik/gradle-use-python-plugin/releases/tag/4.0.0)
Could you please prepare an example project? I tried to reproduce this, but it works. There must be some important specific in your project, not mentioned here. I can't imagine...
Sorry, I can't reproduce this. There must be some side effect: either `DatasetServiceImpl.batchOperationsConfig` instance is different from `MyAPPConfiguration.batchOperations` or somewhere `BatchOperationsConfig.setDatasets(null)` is called. One way to verify is by injecting...
I run all tests with correto 21 and everything works (it would be very strange if it didn't). I assume that the simplest explanation could be server configuration file (yaml)....
> guice seems no to see the annotation I doubt. It's more likely annotation is not passed. I tried to play with lombok and I have no problems (even don't...
Not sure if it would help, but in just released 7.2.0 there is a [provision report](https://xvik.github.io/dropwizard-guicey/latest/guide/diagnostic/guice-provision-report/) (`.printGuiceProvisionTime()`) which also detects accidental JIT injections (unqualified injection when qualified bindings declared): ```...