blob: 067fcf464b58a2ae9782c716a42f7153666c4ca6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//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'
}
|