blob: 3ce509db549dc7adebf972e94b6b11ac380e3d38 [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under the terms of ASLv2 (http://www.apache.org/licenses/LICENSE-2.0).
def libDir = new File("lib")
def output = new File('libs.txt')
output.text = ""
libDir.listFiles().each {
output << "@lib/${it.name},\\"
output << '\n'
}