1
mirror of https://github.com/revanced/revanced-patcher synced 2024-11-27 18:13:37 +01:00
revanced-patcher/build.gradle.kts

29 lines
659 B
Plaintext
Raw Normal View History

2022-03-16 22:00:41 +01:00
plugins {
kotlin("jvm") version "1.6.10"
java
}
group = "net.revanced"
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")
implementation("io.github.microutils:kotlin-logging:2.1.21")
testImplementation("ch.qos.logback:logback-classic:1.2.11") // use your own logger!
testImplementation(kotlin("test"))
2022-03-18 20:46:24 +01:00
}
tasks.test {
useJUnitPlatform()
testLogging {
events("PASSED", "SKIPPED", "FAILED")
}
2022-03-18 20:46:24 +01:00
}