Ihor Herasymenko

Results 6 comments of Ihor Herasymenko

@Wexalian there's no functionality to explicitly declare a package as "open" for a friendly module; however, all generated `module-info` descriptors have the open attribute set by default so that all...

Instead of this (which does invoke a new process): ``` DB databaseServer = ...; databaseServer.createDB(name); ``` I use this: ``` DB databaseServer = ...; MariaDbDataSource dataSource = new MariaDbDataSource(); dataSource.setUser("SA");...

Great job @halfninja . I hope this gets merged soon. As a temporary workaround, I fixed the unwanted transitive dependency issue in my project by applying a component metadata rule....

@MDoswaldSchiller if you happen to use Gradle as your build tool, you may find [this plugin](https://github.com/jjohannes/extra-java-module-info/) extremely useful. It will allow you to define either a complete `module-info.class` or add...

Perhaps a similar constraint can be applied to `opensearch-py` 🤔 ``` urllib3>=1.25.4,

I'd suggest making the build compatible with [jitpack](https://jitpack.io). It's just a matter of adding the 'maven-publish' plugin to the build.gradle.kts.