delete basically everything lol

This commit is contained in:
mae
2025-09-26 23:54:03 -05:00
parent bc08a46f28
commit b57edb8d3a
34 changed files with 157 additions and 1011 deletions

View File

@@ -1,11 +0,0 @@
plugins {
`kotlin-dsl`
}
kotlin {
jvmToolchain(24)
}
dependencies {
implementation(libs.kotlinGradlePlugin)
}

View File

@@ -1,15 +0,0 @@
dependencyResolutionManagement {
@Suppress("UnstableApiUsage")
repositories {
mavenCentral()
}
versionCatalogs {
create("libs") {
from(files("../gradle/libs.versions.toml"))
}
}
}
rootProject.name = "buildSrc"

View File

@@ -1,15 +0,0 @@
package buildsrc.convention
import org.gradle.api.tasks.testing.logging.TestLogEvent
tasks.withType<Test>().configureEach {
useJUnitPlatform()
testLogging {
events(
TestLogEvent.FAILED,
TestLogEvent.PASSED,
TestLogEvent.SKIPPED
)
}
}