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.
40 lines
1.0 KiB
40 lines
1.0 KiB
plugins { |
|
`kotlin-dsl` |
|
`kotlin-dsl-precompiled-script-plugins` |
|
} |
|
|
|
repositories { |
|
// TODO: remove after new build is published |
|
mavenLocal() |
|
google() |
|
jcenter() |
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") |
|
} |
|
|
|
buildscript { |
|
repositories { |
|
// TODO: remove after new build is published |
|
mavenLocal() |
|
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") |
|
}
|
|
|