mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-07 01:00:41 +00:00
18 lines
415 B
Groovy
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"])
|
|
}
|
|
}
|