mirror of
https://github.com/zaaarf/lillero.git
synced 2024-11-12 18:49:23 +01:00
16 lines
389 B
Groovy
16 lines
389 B
Groovy
//rootProject.name = 'lillero'
|
|
|
|
// Apply the java-library plugin for API and implementation separation.
|
|
apply plugin: 'java-library'
|
|
|
|
|
|
repositories {
|
|
// Use Maven Central for resolving dependencies.
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
// implementation 'org.ow2.asm:asm-tree:9.4'
|
|
implementation 'org.ow2.asm:asm-commons:9.4'
|
|
// implementation 'org.ow2.asm:asm-util:9.4'
|
|
}
|