Skip to content

Instantly share code, notes, and snippets.

View dhesson's full-sized avatar
🏠
Working from home

Dave Hesson dhesson

🏠
Working from home
View GitHub Profile
def toCamelCase(String string) {
String result = ""
string.findAll("[^\\W]+") { String word ->
result += word.capitalize()
}
return result
}
afterEvaluate { project ->
Configuration runtimeConfiguration = project.configurations.getByName('compile')