Skip to content

Commit

Permalink
build: update plasmo voice version
Browse files Browse the repository at this point in the history
  • Loading branch information
Apehum committed Apr 3, 2023
1 parent 5e78446 commit ca795e6
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
4 changes: 3 additions & 1 deletion common/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
val plasmoVoiceVersion: String by rootProject

dependencies {
compileOnly("su.plo.voice.api:server-common:2.0.0+ALPHA")
compileOnly("su.plo.voice.api:server-common:$plasmoVoiceVersion")
}
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
plasmoVoiceVersion=2.0.2
8 changes: 4 additions & 4 deletions jar/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
val plasmoVoiceVersion: String by rootProject

plugins {
kotlin("jvm")
id("su.plo.voice.plugin") version("1.0.0")
Expand All @@ -7,10 +9,8 @@ dependencies {
compileOnly(project(":proxy"))
compileOnly(project(":server"))

compileOnly("su.plo.voice.api:server:2.0.0+ALPHA")
compileOnly("su.plo.voice.api:proxy:2.0.0+ALPHA")

annotationProcessor("su.plo.voice.api:server:2.0.0+ALPHA")
compileOnly("su.plo.voice.api:server:$plasmoVoiceVersion")
compileOnly("su.plo.voice.api:proxy:$plasmoVoiceVersion")
}

val platforms = setOf(
Expand Down
4 changes: 3 additions & 1 deletion proxy/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
val plasmoVoiceVersion: String by rootProject

plugins {
id("su.plo.crowdin.plugin")
}

dependencies {
compileOnly(project(":common"))

compileOnly("su.plo.voice.api:proxy:2.0.0+ALPHA")
compileOnly("su.plo.voice.api:proxy:$plasmoVoiceVersion")
}

plasmoCrowdin {
Expand Down
4 changes: 3 additions & 1 deletion server/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
val plasmoVoiceVersion: String by rootProject

plugins {
id("su.plo.crowdin.plugin")
}

dependencies {
compileOnly(project(":common"))

compileOnly("su.plo.voice.api:server:2.0.0+ALPHA")
compileOnly("su.plo.voice.api:server:$plasmoVoiceVersion")
}

plasmoCrowdin {
Expand Down

0 comments on commit ca795e6

Please sign in to comment.