blob: af589adae762fa7fcd0a5075da572216150c6379 [file] [log] [blame]
def libDir = new File("lib")
def output = new File('buildpath.txt')
output.text = ""
libDir.listFiles().each {
output << "lib/${it.name};version=file,\\"
output << '\n'
}