24 lines
446 B
Text
24 lines
446 B
Text
|
plugins {
|
||
|
id("java")
|
||
|
id("application")
|
||
|
}
|
||
|
|
||
|
group = "dev.ashhhleyyy"
|
||
|
version = "1.0-SNAPSHOT"
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
val asmVersion = "9.6"
|
||
|
implementation("org.ow2.asm:asm:$asmVersion")
|
||
|
implementation("org.ow2.asm:asm-tree:$asmVersion")
|
||
|
|
||
|
testImplementation(platform("org.junit:junit-bom:5.9.1"))
|
||
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
||
|
}
|
||
|
|
||
|
tasks.test {
|
||
|
useJUnitPlatform()
|
||
|
}
|