forked from mikepenz/multiplatform-markdown-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
41 lines (36 loc) · 1.14 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
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven {
setUrl("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
dependencies {
classpath("com.android.tools.build:gradle:7.2.2")
classpath("com.vanniktech:gradle-maven-publish-plugin:0.18.0")
classpath("io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.21.0")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.0")
classpath("org.jetbrains.dokka:dokka-gradle-plugin:1.7.10")
classpath("com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:10.4.0")
classpath("org.jetbrains.compose:compose-gradle-plugin:1.2.0-alpha01-dev755")
}
}
allprojects {
group = ext.get("GROUP")!!
version = ext.get("VERSION_NAME")!!
repositories {
google()
mavenCentral()
maven {
setUrl("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
}
subprojects {
apply(from = "../detekt.gradle")
dependencies {
"detektPlugins"("io.gitlab.arturbosch.detekt:detekt-formatting:1.21.0")
}
}