blob: c273390ba6d6a05b89c595ff40edfc4cabcd9c5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
plugins {
java
}
group = "moe.nea"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven("https://maven.architectury.dev")
maven("https://maven.fabricmc.net")
maven("https://maven.minecraftforge.net")
}
dependencies {
implementation("net.fabricmc:stitch:0.6.2")
compileOnly("org.jetbrains:annotations:24.0.0")
implementation("net.minecraftforge:srgutils:0.4.13")
implementation("net.fabricmc:tiny-remapper:0.8.6")
testImplementation("org.junit.jupiter:junit-jupiter:5.9.2")
}
java {
this.toolchain.languageVersion.set(JavaLanguageVersion.of(17))
}
tasks.test {
useJUnitPlatform()
}
|