mig and other goodies

This commit is contained in:
2025-07-15 02:04:27 +00:00
parent 092986b351
commit 1bb524646e
6 changed files with 170 additions and 7 deletions

View File

@@ -1,24 +1,27 @@
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
plugins {
kotlin("jvm") version "2.1.10"
kotlin("jvm") version "2.2.0"
`maven-publish` // for publishToMavenLocal
id("org.jetbrains.dokka-javadoc") version "2.0.0"
}
group = "net.eksb"
dependencies {}
dependencies {
api("com.miglayout:miglayout-swing:11.4.2")
}
java {
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_17
toolchain {
languageVersion.set(JavaLanguageVersion.of(21))
}
withSourcesJar()
}
kotlin {
compilerOptions {
jvmTarget.set(JvmTarget.JVM_17)
jvmTarget.set(JvmTarget.JVM_21)
}
}