-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (30 loc) · 813 Bytes
/
build.gradle
File metadata and controls
32 lines (30 loc) · 813 Bytes
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
buildscript {
dependencies {
classpath libs.kotlin.composePlugin
classpath libs.kotlin.serializationPlugin
classpath libs.buildConfigPlugin
classpath libs.burst.gradle.plugin
classpath libs.zipline.gradlePlugin
classpath libs.paparazzi.gradlePlugin
classpath libs.poko.gradlePlugin
classpath libs.jetbrains.compose.gradlePlugin
classpath 'app.cash.redwood.build:gradle-plugin'
classpath 'app.cash.redwood:redwood-gradle-plugin'
}
repositories {
mavenCentral()
google()
gradlePluginPortal()
}
}
apply plugin: 'org.jetbrains.dokka'
afterEvaluate {
spotless {
kotlin {
targetExclude(
// Apache 2-licensed files from AOSP.
"build-support/src/main/resources/app/cash/redwood/buildsupport/composeHelpers.kt",
)
}
}
}