Nils Petzäll
Nils Petzäll
@marco-schmidt I had this issue with `net.jcip:jcip-annotations` So in allowed license I added ``` { "allowedLicenses": [ { "moduleVersion": "1.0", "moduleName": "net.jcip:jcip-annotations" } ] } ``` And in my license-normilizer...
Something like this https://github.com/jk1/Gradle-License-Report/issues/105#issuecomment-753864358
We have a badge for docs and also a link to documentation in our Readme. We can help you and when we have a finished database type you can create...
JDBC - MSSQL - getLivenessCheckPortNumbers() shouldn't that be the mapped port and not the internal?
If I remember correctly I couldn't use the MSSQLServerContainer and had to extend it. Since it failed the liveliness check. This was on Windows so testcontainers tried to connect to...
JDBC - MSSQL - getLivenessCheckPortNumbers() shouldn't that be the mapped port and not the internal?
I do also have a a custom wait strategy ``` @Override protected void waitUntilContainerStarted() { new WaitAllStrategy() .withStrategy(Wait.forListeningPort()) .withStrategy(Wait.forLogMessage("(?s).*default collation was successfully changed.*",1)) .waitUntilReady(this); super.waitUntilContainerStarted(); } ``` So it might...
JDBC - MSSQL - getLivenessCheckPortNumbers() shouldn't that be the mapped port and not the internal?
It's a bit tricky since the JavaDoc only says ports to check if ready, but Wait.forListeningPort seems to assume that it's a published port.
Since this was back in April and the documentation for maven release isn't crystal clear I'll setup a simple repo and test it out.
Simple repo for testing -> https://github.com/npetzall/gha-maven-release-dev Things that I've learned. POM might need updating to HTTPS in SCM. Run for setting up git is needed: `git config user.name` `git config...
I've updated the PR so that the release plugin. It will be a manually triggered action. Possible enhancements would be to verify the version numbers better. Make sure there aren't...
Redudant PK in index: index_with_pk [ColumnA, ColumnB, PrimaryKeyColumn] Normally the PK shouldn't be in the index, since index already contains a lookup for the PK, so that the whole row...