mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-07 09:11:47 +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"])
|
||
|
}
|
||
|
}
|