xref: /aosp_15_r20/developers/build/templates/create/buildSrc/build.gradle.ftl (revision d353a188ca6ec4b5eba25b5fbd7bcb8ce61322fb)
1*d353a188SXin Li<#ftl>
2*d353a188SXin Li<#--
3*d353a188SXin Li        Copyright 2013 The Android Open Source Project
4*d353a188SXin Li
5*d353a188SXin Li        Licensed under the Apache License, Version 2.0 (the "License");
6*d353a188SXin Li        you may not use this file except in compliance with the License.
7*d353a188SXin Li        You may obtain a copy of the License at
8*d353a188SXin Li
9*d353a188SXin Li        http://www.apache.org/licenses/LICENSE-2.0
10*d353a188SXin Li
11*d353a188SXin Li        Unless required by applicable law or agreed to in writing, software
12*d353a188SXin Li        distributed under the License is distributed on an "AS IS" BASIS,
13*d353a188SXin Li        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14*d353a188SXin Li        See the License for the specific language governing permissions and
15*d353a188SXin Li        limitations under the License.
16*d353a188SXin Li-->
17*d353a188SXin Lirepositories {
18*d353a188SXin Li    google()
19*d353a188SXin Li    jcenter()
20*d353a188SXin Li}
21*d353a188SXin Lidependencies {
22*d353a188SXin Li    implementation 'org.freemarker:freemarker:2.3.20'
23*d353a188SXin Li}
24*d353a188SXin Li
25*d353a188SXin LisourceSets {
26*d353a188SXin Li    main {
27*d353a188SXin Li        groovy {
28*d353a188SXin Li            srcDir new File(rootDir, "../${meta.build}/buildSrc/src/main/groovy")
29*d353a188SXin Li        }
30*d353a188SXin Li    }
31*d353a188SXin Li}
32*d353a188SXin Li
33