When using Geb with Groovy 5.0.0+, the geb-implicit-assertions AST transformation crashes at compile time with a NullPointerException originating from MetaClassImpl.getMetaProperty().
The root cause is Groovy 5 internally using ConcurrentHashMap, which does not permit null keys, resulting into any call to .get(null) throwing an NPE instead of returning null as it did in Groovy 4.