blob: c52b0f4c81fc9c12d21d936b67328a676e7dce89 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
apply plugin: 'java-library'
java.toolchain.languageVersion = JavaLanguageVersion.of(8)
repositories {
mavenCentral()
}
dependencies {
implementation 'org.ow2.asm:asm-commons:9.4'
}
|