proton-mail-android/buildSrc/build.gradle.kts

53 lines
1.6 KiB
Plaintext

/*
* Copyright (c) 2022 Proton AG
*
* This file is part of Proton Mail.
*
* Proton Mail is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Proton Mail is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Proton Mail. If not, see https://www.gnu.org/licenses/.
*/
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
`kotlin-dsl`
kotlin("jvm") version "1.6.21"
}
repositories {
google()
gradlePluginPortal()
maven("https://plugins.gradle.org/m2/")
}
dependencies {
val android = "7.3.1"
val easyGradle = "2.8"
// Needed for setup Android config
implementation("com.android.tools.build:gradle:$android")
// Needed for many utils
implementation("studio.forface.easygradle:dsl-android:$easyGradle")
implementation(kotlin("stdlib-jdk8"))
// Workaround for Dagger 2.40.5 https://github.com/google/dagger/issues/3068#issuecomment-999118496
implementation("com.squareup:javapoet:1.13.0")
}
val compileKotlin: KotlinCompile by tasks
compileKotlin.kotlinOptions {
jvmTarget = "11"
}
val compileTestKotlin: KotlinCompile by tasks
compileTestKotlin.kotlinOptions {
jvmTarget = "11"
}