build: split up into multiple projects, use kotlin DLS
Some checks failed
tagged-release / Tagged Release (push) Has been cancelled

This commit is contained in:
2025-01-10 04:05:17 +02:00
parent 9668bccef1
commit ff44423a58
210 changed files with 486 additions and 267 deletions

View File

@@ -0,0 +1,7 @@
repositories {
mavenCentral();
}
plugins {
`kotlin-dsl`
}

View File

@@ -0,0 +1,12 @@
plugins {
id("common");
}
java {
sourceCompatibility = JavaVersion.VERSION_17;
targetCompatibility = JavaVersion.VERSION_17;
toolchain {
languageVersion = JavaLanguageVersion.of(17);
}
}

View File

@@ -0,0 +1,11 @@
plugins {
id("java");
}
version = rootProject.version;
group = "${rootProject.group}.${project.name}";
base.archivesName = "${properties["project_name"]}-${project.name}";
tasks.named<JavaCompile>("compileJava") {
options.release.set(8);
}