Skip to content

Commit

Permalink
simplify artifact-ids in gradle.properties.
Browse files Browse the repository at this point in the history
  • Loading branch information
portlek committed Jun 14, 2024
1 parent 223d75a commit 43fcefa
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ subprojects {
}
}

val projectName = project.property("artifact-id") as String
val moduleName = project.findProperty("artifact-id") as String?
val projectName = "pubsub${if (moduleName == null) "" else "-$moduleName"}"
val signRequired = project.hasProperty("sign-required")

extensions.configure<MavenPublishBaseExtension> {
Expand Down
1 change: 0 additions & 1 deletion common/gradle.properties

This file was deleted.

2 changes: 1 addition & 1 deletion jackson/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
artifact-id=pubsub-jackson
artifact-id=jackson
2 changes: 1 addition & 1 deletion kotlin/coroutines/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
artifact-id=pubsub-kotlin-coroutines
artifact-id=kotlin-coroutines
2 changes: 1 addition & 1 deletion kotlin/extensions/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
artifact-id=pubsub-kotlin
artifact-id=kotlin
2 changes: 1 addition & 1 deletion kotlin/protobuf/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
artifact-id=pubsub-kotlin-protobuf
artifact-id=kotlin-protobuf
2 changes: 1 addition & 1 deletion redis/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
artifact-id=pubsub-redis
artifact-id=redis

0 comments on commit 43fcefa

Please sign in to comment.