21 lines
454 B
Plaintext
21 lines
454 B
Plaintext
|
plugins {
|
||
|
id("java")
|
||
|
id("io.freefair.lombok").version("8.6+")
|
||
|
}
|
||
|
|
||
|
group = "org.example"
|
||
|
version = "1.0-SNAPSHOT"
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation("com.google.code.gson:gson:2.10.1")
|
||
|
implementation("org.ow2.asm:asm-tree:9.7")
|
||
|
implementation("org.ow2.asm:asm-commons:9.7")
|
||
|
implementation("org.ow2.asm:asm-util:9.7")
|
||
|
|
||
|
// Annotation Processor
|
||
|
annotationProcessor("org.ow2.asm:asm-tree:9.7")
|
||
|
}
|