Skip to content

Commit 5cb3e10

Browse files
committed
Merge branch 'main' into release
v0.1.0 release (replacing the previous one) The missing POM issue is fixed.
2 parents 7c3c3f9 + e52df52 commit 5cb3e10

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
[![Maven Central](https://img.shields.io/maven-central/v/com.huanshankeji/compose-multiplatform-material)](https://search.maven.org/artifact/com.huanshankeji/compose-multiplatform-material)
44

5-
Some simple Compose Multiplatform wrappers of common components, layouts, and Material Design components for desktop,
6-
Android, and web (mainly based on [KMDC](https://github.com/mpetuska/kmdc))
5+
Some simple Compose Multiplatform wrappers of common components, layouts, and Material Design components for
6+
desktop/Android and web (mainly based on [KMDC](https://github.com/mpetuska/kmdc))
77

88
We try to make the function types of the composable components follow those of the desktop and Android ones
99
in `androidx.compose.foundation` and `androidx.compose.material`, meanwhile being compatible with the Web APIs. However,

compose-multiplatform-common/build.gradle.kts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
import com.huanshankeji.team.`Shreck Ye`
2+
import com.huanshankeji.team.pomForTeamDefaultOpenSource
3+
14
plugins {
25
`lib-conventions`
36
}
@@ -24,3 +27,13 @@ kotlin {
2427
}
2528
}
2629
}
30+
31+
publishing.publications.withType<MavenPublication> {
32+
pomForTeamDefaultOpenSource(
33+
project,
34+
"Compose Multiplatform common wrappers",
35+
"Common wrappers of components (including layouts) and styles for Compose Multiplatform on (desktop/Android and web)"
36+
) {
37+
`Shreck Ye`()
38+
}
39+
}

compose-multiplatform-material/build.gradle.kts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
import com.huanshankeji.team.`Shreck Ye`
2+
import com.huanshankeji.team.pomForTeamDefaultOpenSource
3+
14
plugins {
25
`lib-conventions`
36
}
@@ -30,3 +33,13 @@ kotlin {
3033
}
3134
}
3235
}
36+
37+
publishing.publications.withType<MavenPublication> {
38+
pomForTeamDefaultOpenSource(
39+
project,
40+
"Compose Multiplatform Material wrappers",
41+
"Material Design component wrappers for Compose Multiplatform (desktop/Android and web)"
42+
) {
43+
`Shreck Ye`()
44+
}
45+
}

0 commit comments

Comments
 (0)