add initializer for function variables
[platform/core/ml/beyond.git] / build.gradle
1 // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 buildscript {
3     ext {
4         kotlin_version = "1.4.10"
5         kotlinCoroutinesVersion = '1.3.8'
6         grpcVersion = '1.30.2'
7         protobufVersion = '3.12.2'
8         protobufGradleVersion = '0.8.12'
9         nettyVersion = '4.1.51.Final'
10         grpcKotlinVersion = '0.2.1'
11     }
12
13     repositories {
14         google()
15         mavenCentral()
16     }
17     dependencies {
18
19         classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
20         classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.14'
21         classpath "de.mannodermaus.gradle.plugins:android-junit5:1.7.1.1"
22         classpath 'com.android.tools.build:gradle:4.2.1'
23         // NOTE: Do not place your application dependencies here; they belong
24         // in the individual module build.gradle files
25     }
26 }
27
28 allprojects {
29     repositories {
30         google()
31         mavenCentral()
32     }
33 }
34
35 task clean(type: Delete) {
36     delete rootProject.buildDir
37 }