Skip to content

Commit

Permalink
Merge branch 'main' into release
Browse files Browse the repository at this point in the history
v0.1.0 release (replacing the previous one)

The missing POM issue is fixed.
  • Loading branch information
ShreckYe committed Jan 10, 2023
2 parents 7c3c3f9 + e52df52 commit 5cb3e10
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
13 changes: 13 additions & 0 deletions compose-multiplatform-common/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import com.huanshankeji.team.`Shreck Ye`
import com.huanshankeji.team.pomForTeamDefaultOpenSource

plugins {
`lib-conventions`
}
Expand All @@ -24,3 +27,13 @@ kotlin {
}
}
}

publishing.publications.withType<MavenPublication> {
pomForTeamDefaultOpenSource(
project,
"Compose Multiplatform common wrappers",
"Common wrappers of components (including layouts) and styles for Compose Multiplatform on (desktop/Android and web)"
) {
`Shreck Ye`()
}
}
13 changes: 13 additions & 0 deletions compose-multiplatform-material/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import com.huanshankeji.team.`Shreck Ye`
import com.huanshankeji.team.pomForTeamDefaultOpenSource

plugins {
`lib-conventions`
}
Expand Down Expand Up @@ -30,3 +33,13 @@ kotlin {
}
}
}

publishing.publications.withType<MavenPublication> {
pomForTeamDefaultOpenSource(
project,
"Compose Multiplatform Material wrappers",
"Material Design component wrappers for Compose Multiplatform (desktop/Android and web)"
) {
`Shreck Ye`()
}
}

0 comments on commit 5cb3e10

Please sign in to comment.