Anders Olsson
Anders Olsson
But sharing it through dependency management does not solve the issue of repeating the dependencyResolutionManagement block in every project that uses it, right? It just changes it from referencing a...
> I think being able to refer to the catalog by coordinates is exactly the advantage. Because these are always the same and you do not need to use a...
This is what keeps me from using zmk. Are there any workarounds?
Same here, annoying stderr messages logged while container is starting up. I believe this loop executing the test query is triggering it: https://github.com/testcontainers/testcontainers-java/blob/b50cfee16ae15fea876a71b35f1c82d4d0cc51e5/modules/jdbc/src/main/java/org/testcontainers/containers/JdbcDatabaseContainer.java#L142-L182
The mssql jdbc driver is logging with java util logging to the logger named `com.microsoft.sqlserver.jdbc.Connection` https://github.com/microsoft/mssql-jdbc/blob/0f3e0a10f2f85b5b357811907fdb487d63e49830/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerConnection.java#L1213-L1214 So the easiest way to disable it would be disable the warning level of...
This fixed the issue for me.
Just to add a datapoint: on Fedora 39 and Hyprland v0.35.0 starting Kanshi would crash Hyprland. After uprgrading to Hyprland 81fe2ae Kanshi works.
Yep, the all-version is not compatible with org.apache.jclouds.driver:jclouds-slf4j because it shades com.google.inject:guice. I guess because it rewrites the client API, in this case `com.cdancy.jenkins.rest.JenkinsClient.Builder#modules` it would be considered a bug.
The issue is that the intersection of what is shaded and what is part of the public api of jenkins-rest is not empty. Specifically in this case, this line https://github.com/cdancy/jenkins-rest/blob/3c75844300f721f913edea37778bf5cf713d0caf/gradle/additional-artifacts.gradle#L11C19-L11C19...
That sounds like a good solution to me. This will cause guice to become a regular dependency of the shadow jar whereas it previously was shadowed, but on the other...