Hello Devs,
I am encountering a compilation error when running ./gradlew build on
trunk. The error occurs in CheckoutShippingAddress.groovy at line 36:
Unexpected input: 'shipGroupIndex =' @ line 36, column 21.
for (shipGroupIndex = 0; shipGroupIndex < cart.getShipGroupSize();
shipGroupIndex++) {
It appears this is caused by the strict parser in Groovy 5.0.5, which
requires variables in classic for-loops to be explicitly declared (e.g.,
using int or def) rather than implicitly bound.
Could you please confirm if anyone else is experiencing this issue?
Thanks & Regards,
Arun Patidar