Wojtek

Results 362 comments of Wojtek

> Can you share screenshot of these reports? @jeantil already provided the link. There should also be a CSV but I'm not sure why there is no `target` in root...

I had some fun with `jq` to get some summary - total time (in minutes) and number of executions of particular mojos, with: ``` [.projects[].mojos[]] | group_by(.mojo) | map({ mojo:...

> to kill git-commit-id-plugin Removed > Is it as easy as specifying -Dmaven.artifact.threads=4 ? I didn't know that option. The one mentioned by you is to parallel download the artifacts....

> Part of the code is written in scala itself. I'm aware of that and we already talked about that (in gitter?). You mentioned particular Scala feature or library (can't...

Definitely +1 on Header in episode main view. As for the episode list, I would leave single-line title for consistency (easier on the eyes to scan such list) - IMHO.

Which MySQL version do you use? First of all I would suggest doing staged upgrade - first upgrade do version 8.0.x and then to the 8.2.x. Collation problem most likely...

The offending call is this one: `TigAddColumnIfNotExists('tig_ma_msgs', 'buddy_res', 'varchar(1024)')` - it tries to add the column. So it's about MA/message-archive table. The second one ("drop column buddy_res") is the result...

You would have to create your own decoder based on [`MD5UsernamePasswordCredentialsEntry.java`](https://github.com/tigase/tigase-server/blob/1e1a35073ae9315e680f5a305d24ffedee2df010/src/main/java/tigase/auth/credentials/entries/MD5UsernamePasswordCredentialsEntry.java) and modify `verifyPlainPassword()` method by converting result of `getUsername(user)` to lowercase. Afterwards you can disable `'MD5-USERNAME-PASSWORD' () {}` and...

> ok, so we need to re-build the code? Not exactly. You can create a dedicated maven project, add `tigase-server` as dependency, create the class with the implementation suggested as...

Your implementation will basically look like [`MD5UsernamePasswordCredentialsEntry.java`](https://github.com/tigase/tigase-server/blob/1e1a35073ae9315e680f5a305d24ffedee2df010/src/main/java/tigase/auth/credentials/entries/MD5UsernamePasswordCredentialsEntry.java). You will have to change Encoder and Decoder bean names, value returned by `.getName()` methods as well as value returned by `.getMechanism()` that...