datahub/gradle/scripts/license.gradle
Mars Lan a589abbd76 Split the root build script into multiple scripts. (#348)
Split the root build script into multiple scripts
Add coveralls support.
2017-07-10 09:54:08 -07:00

18 lines
415 B
Groovy

apply plugin: 'license'
ext.licenseFile = file('.license_header.txt')
subprojects {
apply plugin: 'com.github.hierynomus.license'
license {
header licenseFile
exclude "**/*.scala.html"
exclude "**/jython/requests/**"
exclude "**/pyparsing.py"
excludes(["**/*.json", "**/*.avsc", "**/*.avro", "**/*.conf", "**/*.yaml", "**/*.xml"])
excludes(["**/*.txt", "**/*.csv", "**/*.md"])
}
}