blob: 7da4fb59742ddd3c3d4b7e349f8766a012650de2 [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('buildpath.txt')
output.text = ""
libDir.listFiles().each {
output << "lib/${it.name};version=file,\\"
output << '\n'
}