Files
TeleJ/event-handlers/build.gradle

19 lines
407 B
Groovy
Raw Permalink Normal View History

2025-11-03 21:16:02 +03:00
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'
}