Skip to content

Commit

Permalink
1.0.1: Whoops!
Browse files Browse the repository at this point in the history
  • Loading branch information
gdude2002 committed Sep 23, 2024
1 parent e06855a commit 0ada0da
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
7 changes: 7 additions & 0 deletions changes/1.0.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# i18n tools 1.0.1

Well, this is embarrassing.

## Translations Class Generator

**CLI:** Add the main class to the manifest, so now you can actually run this. Whoops!
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ kotlin.incremental=true
org.gradle.jvmargs=-XX:MaxMetaspaceSize=1024m
org.gradle.parallel=true

projectVersion=1.0.0
projectVersion=1.0.1
13 changes: 13 additions & 0 deletions i18n-generator/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import org.gradle.kotlin.dsl.invoke

plugins {
application
general
published

Expand All @@ -12,6 +13,18 @@ val projectVersion: String by project
group = "dev.kordex.i18n"
version = projectVersion

application {
mainClass.set("dev.kordex.i18n.generator.MainKt.main")
}

tasks.jar {
manifest {
attributes(
"Main-Class" to "dev.kordex.i18n.generator.MainKt.main"
)
}
}

metadata {
name = "KordEx: i18n Class Generator"
description = "API and CLI for generating translation classes from properties files"
Expand Down

0 comments on commit 0ada0da

Please sign in to comment.