mirror of
https://gitlab.com/SoftwareTalent/FrasesDeAnime.git
synced 2026-02-14 09:11:32 +01:00
48 lines
1.1 KiB
Groovy
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()
|
|
}
|
|
}
|
|
|