File tree 3 files changed +21
-6
lines changed
3 files changed +21
-6
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ import com.vanniktech.maven.publish.MavenPublishBaseExtension
2
+ import com.vanniktech.maven.publish.SonatypeHost
3
+
4
+ plugins {
5
+ alias(libs.plugins.maven.publish)
6
+ alias(libs.plugins.kotlin.multiplatform) apply (false )
7
+ alias(libs.plugins.kotlin.jvm) apply (false )
8
+ alias(libs.plugins.ksp) apply (false )
9
+ }
10
+
11
+ subprojects {
12
+ pluginManager.withPlugin(" com.vanniktech.maven.publish" ) {
13
+ configure<MavenPublishBaseExtension > {
14
+ publishToMavenCentral(host= SonatypeHost .S01 , automaticRelease = true )
15
+ signAllPublications()
16
+ }
17
+ }
18
+ }
Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ POM_LICENCE_URL=https\://www.apache.org/licenses/LICENSE-2.0.txt
13
13
POM_LICENCE_DIST =repo
14
14
POM_DEVELOPER_ID =androidZzT
15
15
POM_DEVELOPER_NAME =androidZzT
16
+ SONATYPE_CONNECT_TIMEOUT_SECONDS = 300
17
+ # SONATYPE_HOST=S01
18
+ # RELEASE_SIGNING_ENABLED=true
16
19
17
20
org.gradle.configureondemand =false
18
21
You can’t perform that action at this time.
0 commit comments