Wallace Wadge

Results 23 comments of Wallace Wadge

FYI 0.10.6 won't work with Java 17

If you're in need of workaround: ``` ['jibDockerBuild', 'jibBuildTar', 'jib'].each { taskName -> getTasksByName(taskName, true).each(it -> { it.notCompatibleWithConfigurationCache("Jib is not compatible with configuration cache"); }); }```

I would like to contribute. I was thinking something along these lines -- it creates a correct predicate at least. Wouldn't that work? ``` @Override public BooleanExpression evaluate(BooleanPath path, ComparisonNode...

ok let me update to querydsl4 first and submit a PR

PR submitted: https://github.com/vineey/archelix-rsql/pull/16

I think it's best to support both options, because for this join you would only get == (equality) no? Let's say you have 2 tables and your desired filter expression...

Here's a use case: ``` tableA{ id INTEGER parent_id FK link to tableB's id timestampA DATE } tableB{ id INTEGER someOtherField text timestampB date } ``` so I want to...

Yes that is correct, that's why I said I think both features are required here. RHS path support is fairly easy and I'll do that if you want, but I'm...

For people going round in circles on this, here's my working version: ``` plugins { id 'java' id 'org.springframework.boot' version '3.1.0' id 'io.spring.dependency-management' version '1.1.0' id 'com.github.johnrengelman.shadow' version '8.1.1' id...