16 lines
247 B
Groovy
16 lines
247 B
Groovy
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
compile 'org.freemarker:freemarker:2.3.20'
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
groovy {
|
|
srcDir new File(rootDir, "../../../../../build/buildSrc/src/main/groovy")
|
|
}
|
|
}
|
|
}
|
|
|