You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
935 B
37 lines
935 B
4 years ago
|
plugins {
|
||
|
`kotlin-dsl`
|
||
|
`kotlin-dsl-precompiled-script-plugins`
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
google()
|
||
|
jcenter()
|
||
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
||
|
}
|
||
|
|
||
|
buildscript {
|
||
|
repositories {
|
||
|
google()
|
||
|
jcenter()
|
||
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
classpath(Deps.JetBrains.Compose.gradlePlugin)
|
||
|
classpath(Deps.JetBrains.Kotlin.gradlePlugin)
|
||
|
classpath(Deps.Android.Tools.Build.gradlePlugin)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(Deps.JetBrains.Compose.gradlePlugin)
|
||
|
implementation(Deps.JetBrains.Kotlin.gradlePlugin)
|
||
|
implementation(Deps.Android.Tools.Build.gradlePlugin)
|
||
|
implementation(Deps.Squareup.SQLDelight.gradlePlugin)
|
||
|
}
|
||
|
|
||
|
kotlin {
|
||
|
// Add Deps to compilation, so it will become available in main project
|
||
|
sourceSets.getByName("main").kotlin.srcDir("buildSrc/src/main/kotlin")
|
||
|
}
|