File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,12 @@ dependencies {
16
16
compileOnly(gradleApi())
17
17
18
18
implementation(libs.android.gradle.plugin)
19
+ implementation(libs.dokka.gradle.plugin)
19
20
implementation(libs.dropbox.dependencyGuard)
20
21
implementation(libs.kotlin.gradle.plugin)
21
22
implementation(libs.squareup.moshi)
22
23
implementation(libs.squareup.moshi.adapters)
24
+ implementation(libs.vanniktech.publish)
23
25
24
26
ksp(libs.squareup.moshi.codegen)
25
27
}
Original file line number Diff line number Diff line change
1
+ import com.android.build.gradle.TestedExtension
2
+ import com.squareup.workflow1.library
3
+ import com.squareup.workflow1.libsCatalog
4
+ import com.vanniktech.maven.publish.SonatypeHost
5
+
6
+ plugins {
7
+ id(" org.jetbrains.dokka" )
8
+ id(" com.vanniktech.maven.publish" )
9
+ // track all runtime classpath dependencies for anything we ship
10
+ id(" dependency-guard" )
11
+ }
12
+
13
+ group = project.property(" GROUP" ) as String
14
+ version = project.property(" VERSION_NAME" ) as String
15
+
16
+ mavenPublish {
17
+ sonatypeHost = SonatypeHost .S01
18
+ }
You can’t perform that action at this time.
0 commit comments