24 lines
426 B
Plaintext
24 lines
426 B
Plaintext
plugins {
|
|
id("java")
|
|
}
|
|
|
|
group = "org.classdump.luna"
|
|
version = "0.4.2"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(platform("org.junit:junit-bom:5.9.1"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
|
|
implementation("org.ow2.asm:asm:9.2")
|
|
implementation("org.ow2.asm:asm-tree:9.2")
|
|
implementation("org.ow2.asm:asm-util:9.2")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|