2022-03-16 22:00:41 +01:00
|
|
|
plugins {
|
|
|
|
kotlin("jvm") version "1.6.10"
|
|
|
|
java
|
|
|
|
}
|
|
|
|
|
|
|
|
group = "net.revanced"
|
|
|
|
version = "1.0"
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(kotlin("stdlib"))
|
2022-03-18 20:46:24 +01:00
|
|
|
implementation("org.ow2.asm:asm:9.2")
|
2022-03-18 21:52:00 +01:00
|
|
|
implementation("org.ow2.asm:asm-util:9.2")
|
|
|
|
implementation("org.ow2.asm:asm-tree:9.2")
|
|
|
|
implementation("org.ow2.asm:asm-commons:9.2")
|
2022-03-19 19:47:12 +01:00
|
|
|
implementation("ch.qos.logback:logback-classic:1.2.11")
|
|
|
|
implementation("io.github.microutils:kotlin-logging:2.1.21")
|
2022-03-19 01:37:02 +01:00
|
|
|
testImplementation(kotlin("test"))
|
2022-03-18 20:46:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|