forked from cashapp/redwood
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
31 lines (29 loc) · 804 Bytes
/
build.gradle
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
buildscript {
dependencies {
classpath libs.kotlin.serializationPlugin
classpath libs.atomicFuPlugin
classpath libs.buildConfigPlugin
classpath libs.zipline.gradlePlugin
classpath libs.paparazzi.gradlePlugin
classpath libs.poko.gradlePlugin
classpath 'app.cash.redwood.build:gradle-plugin'
classpath 'app.cash.redwood:redwood-gradle-plugin'
}
repositories {
mavenCentral()
google()
gradlePluginPortal()
}
}
// TODO Re-enable dokka once https://github.com/Kotlin/dokka/issues/2977 is fixed.
// 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",
)
}
}
}