Skip to content

Commit

Permalink
conventions 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Hummel009 committed Feb 7, 2024
1 parent f5cda19 commit ea47d9c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion appJava/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = "hummel"
version = "v" + LocalDate.now().format(DateTimeFormatter.ofPattern("yy.MM.dd"))
version = LocalDate.now().format(DateTimeFormatter.ofPattern("yy.MM.dd"))

val embed: Configuration by configurations.creating

Expand Down
2 changes: 1 addition & 1 deletion appKotlinJvm/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = "hummel"
version = "v" + LocalDate.now().format(DateTimeFormatter.ofPattern("yy.MM.dd"))
version = LocalDate.now().format(DateTimeFormatter.ofPattern("yy.MM.dd"))

val embed: Configuration by configurations.creating

Expand Down
2 changes: 1 addition & 1 deletion appKotlinNative/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = "hummel"
version = "v" + LocalDate.now().format(DateTimeFormatter.ofPattern("yy.MM.dd"))
version = LocalDate.now().format(DateTimeFormatter.ofPattern("yy.MM.dd"))

java {
toolchain {
Expand Down

0 comments on commit ea47d9c

Please sign in to comment.