-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
42 lines (37 loc) · 1.53 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
mavenCentral()
maven(url = "https://oss.sonatype.org/content/repositories/snapshots")
// https://github.com/cashapp/sqldelight/pull/2224
maven(url = "https://www.jetbrains.com/intellij-repository/releases")
maven(url = "https://jetbrains.bintray.com/intellij-third-party-dependencies")
}
dependencies {
classpath("com.android.tools.build:gradle:7.0.0-beta05")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10")
classpath("com.squareup.sqldelight:gradle-plugin:1.6.0-SNAPSHOT")
classpath("com.codingfeline.buildkonfig:buildkonfig-gradle-plugin:0.7.0")
classpath("com.github.node-gradle:gradle-node-plugin:2.2.4")
classpath("com.github.jengelman.gradle.plugins:shadow:6.1.0")
classpath("com.cuhacking.mmapp:gradle-plugin:0.1.0-SNAPSHOT")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id("io.gitlab.arturbosch.detekt") version "1.15.0" apply false
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
// kotlinx-datetime
maven(url = "https://kotlin.bintray.com/kotlinx/")
maven(url = "https://oss.sonatype.org/content/repositories/snapshots")
}
}
tasks.create("displayVersionInfo", DisplayVersionInfo::class)