mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2024-11-13 02:14:27 +01:00
22 lines
309 B
Text
22 lines
309 B
Text
plugins {
|
|
kotlin("jvm") version "1.6.10"
|
|
java
|
|
}
|
|
|
|
group = "net.revanced"
|
|
version = "1.0"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(kotlin("stdlib"))
|
|
testImplementation(kotlin("test"))
|
|
|
|
implementation("org.ow2.asm:asm:9.2")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|