aboutsummaryrefslogtreecommitdiff
path: root/buildSrc/build.gradle
blob: b42a6ef536b12bc1ce0676b054f32137f1f7d7fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
repositories {
    mavenCentral()
}
dependencies {
    compile 'org.freemarker:freemarker:2.3.20'
}

sourceSets {
    main {
        groovy {
            srcDir new File(rootDir, "../../build/buildSrc/src/main/groovy")
        }
    }
}