Skip to content

Commit b1efcda

Browse files
committed
config changes
1 parent c728ae0 commit b1efcda

File tree

7 files changed

+25
-7
lines changed

7 files changed

+25
-7
lines changed

.idea/gradle.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle.kts

+20-4
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,31 @@ dependencies {
1919
implementation("org.json:json:20210307")
2020

2121
}
22-
22+
java {
23+
toolchain {
24+
languageVersion.set(JavaLanguageVersion.of(17))
25+
}
26+
}
2327
compose.desktop {
2428
application {
2529
mainClass = "MainKt"
26-
2730
nativeDistributions {
31+
macOS {
32+
iconFile.set(project.file("translate.icns"))
33+
}
34+
windows {
35+
iconFile.set(project.file("translate.ico"))
36+
}
37+
linux {
38+
iconFile.set(project.file("translate.png"))
39+
}
2840
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
2941
packageName = "com.coding.meet.translate"
30-
packageVersion = "1.0.0"
42+
description = "String Translator Desktop App"
43+
vendor = "Meet"
44+
version = "1.0.0"
45+
licenseFile.set(project.file("LICENSE"))
46+
outputBaseDir.set(project.rootDir.resolve("customOutputDir"))
3147
}
3248
}
33-
}
49+
}

gradle.properties

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
distributionBase=GRADLE_USER_HOME
12
kotlin.code.style=official
2-
3+
zipStoreBase=GRADLE_USER_HOME
34
#Gradle
45
org.gradle.jvmargs=-Xmx2048M -Dfile.encoding=UTF-8 -Dkotlin.daemon.jvm.options\="-Xmx2048M"
56

translate.icns

21.4 KB
Binary file not shown.

translate.ico

66.1 KB
Binary file not shown.

translate.png

3.26 KB
Loading

0 commit comments

Comments
 (0)