Soner Köksal
Soner Köksal
When used with `ext-language_tools` which always uses a singleton to set `editor.completers`, pushing a new completer to it always populate it over and over therefore at the end you will...
I also stumbled upon this issue while migrating a project from Maven to Gradle. Surprisingly it works fine with Java 17 on Maven but not Gradle. And with Java 11...
Just so you know, you can already do this without modifying anything on Suwayomi-WebUI with [caddy](https://github.com/caddyserver/caddy) ([replace-response](https://github.com/caddyserver/replace-response) module enabled) using the following config: ```Caddyfile handle_path /suwayomi/* { reverse_proxy {REAL_SUWAYOMI_ADDRESS}:4567 {...
> things like -Xms, -Xmx Normally you shouldn't need to set these flags with the [UseContainerSupport](https://docs.oracle.com/en/java/javase/11/tools/java.html) flag, which is enabled by default if supported by the system. However, there's already...
If it's only for credentials you can do like this, init.gradle: ```gradle import net.linguica.gradle.maven.settings.LocalMavenSettingsLoader import net.linguica.gradle.maven.settings.MavenSettingsPlugin import net.linguica.gradle.maven.settings.MavenSettingsPluginExtension initscript { repositories { maven { url 'https://plugins.gradle.org/m2/' } } dependencies {...
Never tried it myself but it should be possible. Just try debugging different variations by using [command line](https://docs.gradle.org/current/userguide/init_scripts.html#sec:using_an_init_script) option on your IDE.