Skip to content

Commit

Permalink
feat(images-api): implement images api
Browse files Browse the repository at this point in the history
  • Loading branch information
hanrw committed Feb 12, 2024
1 parent 91ff7f0 commit c9b1c46
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,19 @@ dependencies {
kover(projects.openaiClient.openaiClientDarwin)
}

val autoVersion = project.property(
if (project.hasProperty("AUTO_VERSION")) {
"AUTO_VERSION"
} else {
"LIBRARY_VERSION"
}
) as String

subprojects {
group = "com.tddworks"
val GROUP: String by project
group = GROUP
version = autoVersion
// group = "com.tddworks"
apply(plugin = rootProject.libs.plugins.kotlinMultiplatform.get().pluginId)
}

Expand Down

0 comments on commit c9b1c46

Please sign in to comment.