more build improvements

This commit is contained in:
mae 2025-10-09 00:16:50 -05:00
parent ec73bdabfa
commit 1dc17ac487
Signed by: maemachinebroke
GPG Key ID: B54591A4805E9CC8
6 changed files with 22 additions and 31 deletions

View File

@ -1,32 +1,16 @@
plugins {
kotlin("jvm") version "2.2.10"
kotlin("plugin.serialization") version "2.2.20"
}
group = "moe.rosa"
version = "0.1.0"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.9.0")
implementation(kotlin("reflect"))
}
kotlin {
jvmToolchain(24)
}
tasks.build.configure {
tasks.register("build").configure {
group = "build"
dependsOn("test")
dependsOn(":plt-build:build")
dependsOn(":plt-build-wrapper:compileGo")
dependsOn(":plt-fetch:compileGo")
dependsOn(":plt-pkg:compileGo")
dependsOn(":plt-server:compileGo")
dependsOn(":plt-updated:compileGo")
}
tasks.test.configure {
tasks.register("test").configure {
group = "verification"
dependsOn(":plt-build:test")
dependsOn(":plt-build-wrapper:testGo")
dependsOn(":plt-fetch:testGo")
dependsOn(":plt-pkg:testGo")

View File

@ -11,7 +11,7 @@ class GoPlugin : Plugin<Project> {
group = "go"
description = "compile all go source files and output into build directory"
workingDir(project.layout.projectDirectory)
commandLine("go", "build", "-o", "../build/go")
commandLine("go", "build", "-o", "../build/go/${project.name}")
}
project.tasks.register("runGo", Exec::class.java) {
group = "go"

View File

@ -1,5 +1,6 @@
plugins {
id("java")
kotlin("jvm") version "2.2.10"
kotlin("plugin.serialization") version "2.2.20"
}
group = "moe.rosa"
@ -13,8 +14,17 @@ dependencies {
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
testImplementation(kotlin("test"))
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.9.0")
implementation(kotlin("reflect"))
}
kotlin {
jvmToolchain(24)
}
tasks.test {
useJUnitPlatform()
}
}
project.layout.buildDirectory.set(file("../build"))

View File

@ -0,0 +1 @@
rootProject.name = "plt-build"

View File

@ -1,3 +1,3 @@
module plt-updated
module plt-server
go 1.24

View File

@ -1,7 +1,3 @@
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
rootProject.name = "planterette"
include("plt-build")
include("plt-build-wrapper")
include("plt-fetch")