xref: /aosp_15_r20/tools/trebuchet/build.gradle (revision 56b170dbe6574b1f0ec9db7a63de7238ca6a09ea)
1*56b170dbSXin Li/*
2*56b170dbSXin Li * Copyright 2017 Google Inc.
3*56b170dbSXin Li *
4*56b170dbSXin Li * Licensed under the Apache License, Version 2.0 (the "License");
5*56b170dbSXin Li * you may not use this file except in compliance with the License.
6*56b170dbSXin Li * You may obtain a copy of the License at
7*56b170dbSXin Li *
8*56b170dbSXin Li *     https://www.apache.org/licenses/LICENSE-2.0
9*56b170dbSXin Li *
10*56b170dbSXin Li * Unless required by applicable law or agreed to in writing, software
11*56b170dbSXin Li * distributed under the License is distributed on an "AS IS" BASIS,
12*56b170dbSXin Li * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*56b170dbSXin Li * See the License for the specific language governing permissions and
14*56b170dbSXin Li * limitations under the License.
15*56b170dbSXin Li */
16*56b170dbSXin Li
17*56b170dbSXin Libuildscript {
18*56b170dbSXin Li    ext.kotlin_version = "1.5.10"
19*56b170dbSXin Li
20*56b170dbSXin Li    repositories {
21*56b170dbSXin Li        mavenCentral()
22*56b170dbSXin Li        jcenter()
23*56b170dbSXin Li    }
24*56b170dbSXin Li
25*56b170dbSXin Li    dependencies {
26*56b170dbSXin Li        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
27*56b170dbSXin Li    }
28*56b170dbSXin Li}
29*56b170dbSXin Li
30*56b170dbSXin Liallprojects {
31*56b170dbSXin Li    repositories {
32*56b170dbSXin Li        jcenter()
33*56b170dbSXin Li        mavenCentral()
34*56b170dbSXin Li    }
35*56b170dbSXin Li}