Initial commit

This commit is contained in:
George
2026-06-07 12:18:45 +01:00
commit 9f9b85e1f2
305 changed files with 23050 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
plugins {
id 'java-library'
id 'net.neoforged.moddev' version '2.0.107'
}
group = 'com.livingworld'
version = '0.1.0'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
neoForge {
version = '21.1.172'
runs {
client {
client()
}
server {
server()
}
}
mods {
living_world {
sourceSet sourceSets.main
}
}
}
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.2'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.10.2'
}
test {
useJUnitPlatform()
}