mirror of
https://github.com/HighCapable/YukiReflection.git
synced 2025-09-05 10:15:40 +08:00
- move demo-app to samples and rename demo-android - rename yukireflection to yukireflection-core - add demo-jvm in samples - convert yukireflection-core from android to java-library - optimize code - other small changes
23 lines
515 B
Plaintext
23 lines
515 B
Plaintext
plugins {
|
|
autowire(libs.plugins.kotlin.jvm)
|
|
autowire(libs.plugins.kotlin.compose)
|
|
}
|
|
|
|
group = property.project.samples.demo.jvm.groupName
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
compose.desktop {
|
|
application {
|
|
mainClass = "$group.MainKt"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.yukireflectionCore)
|
|
implementation(compose.desktop.currentOs)
|
|
implementation(org.jetbrains.compose.material3.material3.desktop)
|
|
} |