File tree Expand file tree Collapse file tree 5 files changed +16
-8
lines changed Expand file tree Collapse file tree 5 files changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -5,4 +5,5 @@ plugins {
5
5
id(" com.android.application" ).apply (false )
6
6
id(" com.android.library" ).apply (false )
7
7
id(" org.jetbrains.compose" ).apply (false )
8
+ id(" com.vanniktech.maven.publish" ) version " 0.25.3" apply false
8
9
}
Original file line number Diff line number Diff line change @@ -24,14 +24,15 @@ agp.version=8.0.2
24
24
compose.version =1.5.1
25
25
26
26
27
- GROUP_ID =io.github.kevinnzou
28
- ARTIFACT_ID =compose-progressIndicator-multiplatform
27
+ GROUP =io.github.kevinnzou
28
+ POM_ARTIFACT_ID =compose-progressIndicator-multiplatform
29
29
VERSION_NAME =1.2.0
30
30
31
-
31
+ POM_NAME =Compose Progress Indicator Multiplatform
32
+ POM_INCEPTION_YEAR =2023
32
33
POM_DESCRIPTION =Custom Progress Indicator for JetBrains Compose Multiplatform
33
-
34
34
POM_URL =https://github.com/KevinnZou/compose-progressIndicator-multiplatform
35
+
35
36
POM_SCM_URL =https://github.com/KevinnZou/compose-progressIndicator-multiplatform
36
37
POM_SCM_CONNECTION =scm:git:git://github.com/KevinnZou/compose-progressIndicator-multiplatform.git
37
38
POM_SCM_DEV_CONNECTION =scm:git:ssh://git@github.com/KevinnZou/compose-progressIndicator-multiplatform.git
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ plugins {
4
4
kotlin(" multiplatform" )
5
5
id(" com.android.library" )
6
6
id(" org.jetbrains.compose" )
7
- // id("convention.publication ")
7
+ id(" com.vanniktech.maven.publish " )
8
8
}
9
9
10
10
kotlin {
@@ -77,3 +77,10 @@ android {
77
77
jvmToolchain(17 )
78
78
}
79
79
}
80
+
81
+ mavenPublishing {
82
+ // publishToMavenCentral(SonatypeHost.DEFAULT)
83
+ // or when publishing to https://s01.oss.sonatype.org
84
+ publishToMavenCentral(com.vanniktech.maven.publish.SonatypeHost .S01 , automaticRelease = true )
85
+ signAllPublications()
86
+ }
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ kotlin {
11
11
android {
12
12
compilations.all {
13
13
kotlinOptions {
14
- jvmTarget = " 1.8 "
14
+ jvmTarget = " 17 "
15
15
}
16
16
}
17
17
}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ rootProject.name = "compose-progressIndicator-multiplatform"
3
3
include(" :sample:androidApp" )
4
4
include(" :progressIndicator" )
5
5
include(" :sample:desktopApp" )
6
- // includeBuild("convention-plugins ")
6
+ include( " :sample:shared " )
7
7
8
8
pluginManagement {
9
9
repositories {
@@ -40,4 +40,3 @@ dependencyResolutionManagement {
40
40
maven(" https://maven.pkg.jetbrains.space/public/p/compose/dev" )
41
41
}
42
42
}
43
- include(" :sample:shared" )
You can’t perform that action at this time.
0 commit comments