Skip to content

Commit

Permalink
i18n generation timing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gdude2002 committed Oct 20, 2024
1 parent 7a39cf5 commit 7a32e70
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions changes/1.5.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Gradle Plugins 1.5.0

This version includes a small fix for the KordEx plugin.

## KordEx Plugin

- Fix a problem where the generated `Key` objects were being generated too late for `compileKotlin` to pick them up.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ kotlin.incremental=true
org.gradle.jvmargs=-XX:MaxMetaspaceSize=1024m
org.gradle.parallel=true

projectVersion=1.5.0
projectVersion=1.5.1
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ object I18nHelper {
}
}

target.tasks.getByName("build") {
target.tasks.getByName("compileKotlin") {
dependsOn(generateTask)
}

Expand Down
2 changes: 1 addition & 1 deletion testModule/settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pluginManagement {
plugins {
val pluginVersion = "1.5.0"
val pluginVersion = "1.5.1"

kotlin("jvm") version "2.0.21"

Expand Down

0 comments on commit 7a32e70

Please sign in to comment.