diff --git a/README.md b/README.md index f1a66bb..e88706d 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ [![Maven Central](https://img.shields.io/maven-central/v/com.huanshankeji/compose-multiplatform-material)](https://search.maven.org/artifact/com.huanshankeji/compose-multiplatform-material) -Some simple Compose Multiplatform wrappers of common components, layouts, and Material Design components for desktop, -Android, and web (mainly based on [KMDC](https://github.com/mpetuska/kmdc)) +Some simple Compose Multiplatform wrappers of common components, layouts, and Material Design components for +desktop/Android and web (mainly based on [KMDC](https://github.com/mpetuska/kmdc)) We try to make the function types of the composable components follow those of the desktop and Android ones in `androidx.compose.foundation` and `androidx.compose.material`, meanwhile being compatible with the Web APIs. However, diff --git a/compose-multiplatform-common/build.gradle.kts b/compose-multiplatform-common/build.gradle.kts index 25e722b..a7a3c61 100644 --- a/compose-multiplatform-common/build.gradle.kts +++ b/compose-multiplatform-common/build.gradle.kts @@ -1,3 +1,6 @@ +import com.huanshankeji.team.`Shreck Ye` +import com.huanshankeji.team.pomForTeamDefaultOpenSource + plugins { `lib-conventions` } @@ -24,3 +27,13 @@ kotlin { } } } + +publishing.publications.withType { + pomForTeamDefaultOpenSource( + project, + "Compose Multiplatform common wrappers", + "Common wrappers of components (including layouts) and styles for Compose Multiplatform on (desktop/Android and web)" + ) { + `Shreck Ye`() + } +} diff --git a/compose-multiplatform-material/build.gradle.kts b/compose-multiplatform-material/build.gradle.kts index dee2923..86943a5 100644 --- a/compose-multiplatform-material/build.gradle.kts +++ b/compose-multiplatform-material/build.gradle.kts @@ -1,3 +1,6 @@ +import com.huanshankeji.team.`Shreck Ye` +import com.huanshankeji.team.pomForTeamDefaultOpenSource + plugins { `lib-conventions` } @@ -30,3 +33,13 @@ kotlin { } } } + +publishing.publications.withType { + pomForTeamDefaultOpenSource( + project, + "Compose Multiplatform Material wrappers", + "Material Design component wrappers for Compose Multiplatform (desktop/Android and web)" + ) { + `Shreck Ye`() + } +}