Trying to install the Gasoline project on Community 2023.1 beta 1

Hi Community,
 

I am trying to use the Gasoline project on the latest community beta and when trying access the application I get the following.

 

2023-03-17T23:00:05,034-0400 | bonita2022-2 | WARN  | [http-nio-8080-exec-2|66] o.b.l.LivingApplicationPageServlet - Error while trying to render the application page custompage_gasolinetruck
org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
file:/home/dominic/BonitaStudioCommunity-2023.1-b1/workspace/tomcat/server/temp/bonita_portal_2324@bonita2022-2/tenant/pages/custompage_gasolinetruck/Actions.groovy: 296: The class java.util.List <String, Object> (supplied with 2 type parameters) refers to the class java.util.List <E extends java.lang.Object> which takes 1 parameter
 @ line 296, column 42.

 

If I look in the groovy file, I see the following. 
                         rows =  (List<String, Object>) JSONValue.parse( result );

 

And if I change it to 
                                rows =  (List<String>) JSONValue.parse( result );

 

The page loads but I am not sure if it is correct. Can someone look at the project to make it 2023.1 compatible?