Skip to content

Commit

Permalink
[no ci]plugin version
Browse files Browse the repository at this point in the history
  • Loading branch information
storytellerF committed Oct 26, 2024
1 parent 469a0e9 commit a62c2c6
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion backend/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import java.util.Properties

plugins {
alias(libs.plugins.kotlinJvm)
id("com.github.gmazzo.buildconfig") version "5.4.0"
alias(libs.plugins.kotlinBuildConfig)
}

group = "com.storyteller_f"
Expand Down
2 changes: 1 addition & 1 deletion builtin-bot/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
alias(libs.plugins.kotlinJvm)
alias(libs.plugins.ktor)
application
id("com.github.gmazzo.buildconfig") version "5.4.0"
alias(libs.plugins.kotlinBuildConfig)
}

group = "com.storyteller_f.a"
Expand Down
5 changes: 2 additions & 3 deletions composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ plugins {
alias(libs.plugins.androidApplication)
alias(libs.plugins.jetbrainsCompose)
alias(libs.plugins.compose.compiler)
id("com.codingfeline.buildkonfig") version "0.15.1"
id("com.starter.easylauncher") version "6.4.0"
alias(libs.plugins.buildconfig)
alias(libs.plugins.easylauncher)
}

val buildIosTarget = project.findProperty("target.ios") == true
Expand Down Expand Up @@ -170,7 +170,6 @@ android {
excludes += listOf("/META-INF/{AL2.0,LGPL2.1}", "META-INF/versions/9/OSGI-INF/MANIFEST.MF")
}
}
flavorDimensions += "server"
buildTypes {
getByName("debug") {
applicationIdSuffix = ".debug"
Expand Down
6 changes: 6 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ precompose = "1.6.2"
slf4jSimple = "2.0.13"
sqliteJdbc = "3.46.0.0"
uriKmp = "0.0.18"
easylauncher = "6.4.0"
buildconfig = "0.15.1"
kotlin_buildconfig = "5.4.0"


[libraries]
Expand Down Expand Up @@ -135,6 +138,9 @@ kotlinJvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
ktor = { id = "io.ktor.plugin", version.ref = "ktor" }
kotlinMultiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
easylauncher = { id = "com.starter.easylauncher", version.ref = "easylauncher" }
buildconfig = { id = "com.codingfeline.buildkonfig", version.ref = "buildconfig" }
kotlinBuildConfig = { id = "com.github.gmazzo.buildconfig", version.ref = "kotlin_buildconfig" }

[bundles]
ktor-client = ["ktor-client-content-negotiation", "ktor-client-core", "ktor-serialization-kotlinx-json", "ktor-client-auth", "ktor-client-logging", "ktor-client-websockets"]
Expand Down
2 changes: 1 addition & 1 deletion server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
alias(libs.plugins.ktor)
alias(libs.plugins.serialization)
application
id("com.github.gmazzo.buildconfig") version "5.4.0"
alias(libs.plugins.kotlinBuildConfig)
}

group = "com.storyteller_f.a"
Expand Down

0 comments on commit a62c2c6

Please sign in to comment.