Files
FrasesDeAnime/build.gradle
2019-08-16 19:04:30 +02:00

48 lines
1.1 KiB
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
google()
}
dependencies {
//def kotlin_version = '1.3.21'
classpath 'com.android.tools.build:gradle:3.4.2'
//classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
//ext.kotlin_version = "$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.41'
}
repositories {
mavenCentral()
}
/*dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.41"
}*/
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
allprojects {
repositories {
jcenter()
maven { url 'https://jitpack.io' }
maven {
url "https://maven.google.com"
}
google()
}
}