Skip to content

Instantly share code, notes, and snippets.

@HIPERCUBE
Created December 25, 2016 18:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HIPERCUBE/1c3660afddd4d58b709825a244766ce6 to your computer and use it in GitHub Desktop.
Save HIPERCUBE/1c3660afddd4d58b709825a244766ce6 to your computer and use it in GitHub Desktop.
Groovy List Sample Code
// Declare list with initial items.
test.includes = ['org/gradle/api/**'. 'org/gradle/internal/**']
// Set list using ArrayList
List<String> list = new ArrayList<String>()
list.add('org/gradle/api/**')
list.add('org/gradle/internal/**')
test.includes = list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment