Typical is:
def list = []
other options include
def list = new ArrayList()
def list = new ArrayList()
List list = new ArrayList()
def list = [] as ArrayList
List list = [] as ArrayList
and of course:
List list = new ArrayList();
Similar options exist for HashMap
using [:]
.