21 lines
475 B
Groovy
21 lines
475 B
Groovy
|
|
plugins {
|
||
|
|
id 'java'
|
||
|
|
}
|
||
|
|
|
||
|
|
group = 'com.github.hdvtdev'
|
||
|
|
version = '1.0.0'
|
||
|
|
|
||
|
|
repositories {
|
||
|
|
mavenCentral()
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
implementation 'com.google.auto.service:auto-service:1.1.1'
|
||
|
|
implementation project(':core')
|
||
|
|
implementation 'org.ow2.asm:asm:9.9'
|
||
|
|
annotationProcessor 'com.google.auto.service:auto-service:1.1.1'
|
||
|
|
//implementation 'com.fasterxml.jackson.core:jackson-annotations:2.18.3'
|
||
|
|
implementation project(":event-handlers-annotations")
|
||
|
|
}
|
||
|
|
|