19 lines
407 B
Groovy
19 lines
407 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'hdvtdev'
|
|
version = '1.0.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':core')
|
|
//annotationProcessor 'com.fasterxml.jackson.core:jackson-annotations:2.18.3'
|
|
annotationProcessor project(':annotation-processor')
|
|
implementation project(":event-handlers-annotations")
|
|
implementation 'org.jetbrains:annotations:26.0.2-1'
|
|
}
|