tachiyomi/build.gradle.kts
Jays2Kings a8a23c153d Upgrading bunch of libraries
gradle -> 4.2.2
appcompat -> 1.3.0
material -> 1.4.0
recyclerview -> 1.2.1
core-ktx -> 1.6.0
kotlin serialization -> 1.2.1
conductor-support-preference -> upstream 3.0.0
firebase -> 19.0.0
junit -> 4.13.2
conscrypt -> 2.5.2
2021-07-04 14:27:28 -04:00

53 lines
1.4 KiB
Plaintext

plugins {
id(Plugins.kotlinter.name) version Plugins.kotlinter.version
id(Plugins.gradleVersions.name) version Plugins.gradleVersions.version
id(Plugins.jetbrainsKotlin) version Versions.kotlin apply false
}
allprojects {
repositories {
google()
mavenCentral()
maven { setUrl("https://jitpack.io") }
maven { setUrl("https://plugins.gradle.org/m2/") }
}
}
subprojects {
apply(plugin = Plugins.kotlinter.name)
kotlinter {
experimentalRules = true
}
}
buildscript {
dependencies {
classpath(LegacyPluginClassPath.fireBaseCrashlytics)
classpath("com.android.tools.build:gradle:4.2.2")
classpath(LegacyPluginClassPath.googleServices)
classpath(LegacyPluginClassPath.kotlinPlugin)
classpath(LegacyPluginClassPath.aboutLibraries)
classpath(LegacyPluginClassPath.kotlinSerializations)
}
repositories {
gradlePluginPortal()
google()
jcenter()
}
}
tasks.named("dependencyUpdates", com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask::class.java).configure {
rejectVersionIf {
isNonStable(candidate.version)
}
// optional parameters
checkForGradleUpdate = true
outputFormatter = "json"
outputDir = "build/dependencyUpdates"
reportfileName = "report"
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}