mirror of
https://github.com/zaaarf/lillero.git
synced 2024-11-10 01:29:22 +01:00
13 lines
302 B
Groovy
13 lines
302 B
Groovy
apply plugin: 'java-library'
|
|
|
|
java.toolchain.languageVersion = JavaLanguageVersion.of(8)
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.ow2.asm:asm-commons:9.4'
|
|
implementation 'org.ow2.asm:asm-util:9.4'
|
|
implementation 'org.apache.logging.log4j:log4j-api:2.15.0'
|
|
}
|