Skip to content

Commit

Permalink
Fix application of kordex annotation processor
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Nov 5, 2024
1 parent 5f7b70f commit cb8d375
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ internal fun Project.addDependencies() {
add("ksp", mikbot("plugin-processor"))
val optionalKordExDependency = mikbotPluginExtension.enableKordexProcessor.map {
if (it) {
create("com.kotlindiscord.kord.extensions:annotation-processor:${MikBotPluginInfo.KORDEX_VERSION}")
create("dev.kordex:annotation-processor:${MikBotPluginInfo.KORDEX_VERSION}")
} else {
val emptyDependency = project.fileTree("empty") {
include { false }
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ coroutines = "1.9.0"
serialization = "1.7.3"
ktor = "3.0.1"
kord = "feature-user-apps-20241102.180018-12"
api = "4.1.0"
api = "4.1.1"
ksp = "2.0.21-1.0.26"
lavakord = "8.0.1"
kordex-plugin = "1.5.6"
Expand Down

0 comments on commit cb8d375

Please sign in to comment.