aboutsummaryrefslogtreecommitdiff
path: root/content/SharingShortcuts/buildSrc/build.gradle
blob: 75b00eeb6b94512d250e3b899755debee829c8e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

repositories {
    google()
    jcenter()
}
dependencies {
    implementation 'org.freemarker:freemarker:2.3.20'
}

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