Skip to content

Commit

Permalink
Publish coroutine support (#365)
Browse files Browse the repository at this point in the history
* Publish coroutine support

* Add configuration for coroutines lib to archives script
  • Loading branch information
Jawnnypoo authored Apr 16, 2024
1 parent 2283b4e commit ff566f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .buildscript/upload_archives.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
./gradlew :formula-test:build -PreleaseBuild
./gradlew :formula-android-compose:build -PreleaseBuild
./gradlew :formula-lint:build -PreleaseBuild
./gradlew :formula-coroutines:build -PreleaseBuild

# Disabling parallelism and daemon sharing is required by the vanniktech maven publish plugin.
# Without those, the artifacts will be split across multiple (invalid) staging repositories.
Expand Down
4 changes: 4 additions & 0 deletions formula-coroutines/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ plugins {
id("kotlin")
}

apply {
from("$rootDir/.buildscript/configure-signing.gradle")
}

dependencies {
implementation(libs.kotlin)
implementation(libs.coroutines)
Expand Down

0 comments on commit ff566f5

Please sign in to comment.