migration

This commit is contained in:
hdvt
2025-11-03 21:18:28 +03:00
6 changed files with 123 additions and 87 deletions

View File

@@ -1,5 +1,6 @@
plugins {
id 'java'
id 'application'
}
group = 'com.github.hdvtdev'
@@ -11,7 +12,16 @@ repositories {
dependencies {
implementation(project(":core"))
annotationProcessor(project(":annotation-processor"))
implementation(project(":longpolling-okhttp"))
implementation(project(":event-handlers"))
implementation(project(":event-handlers-annotations"))
}
application {
mainClass = "Main"
}
tasks.register('fat', Jar) {