-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (31 loc) · 1.53 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import java.nio.charset.StandardCharsets
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'application'
repositories {
mavenCentral()
mavenLocal()
}
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
[compileJava, compileTestJava].options*.encoding = StandardCharsets.UTF_8.name()
dependencies {
implementation "com.typesafe.akka:akka-actor-typed_3:$akkaVersion"
implementation "ch.qos.logback:logback-classic:$logbackVersion"
implementation "org.telegram:telegrambots-longpolling:$telegramVersion"
implementation "org.telegram:telegrambots-client:$telegramVersion"
implementation "org.apache.commons:commons-lang3:$commonsLangVersion"
implementation "org.yaml:snakeyaml:$snakeYamlVersion"
implementation "org.apache.httpcomponents.client5:httpclient5:$httpClientVersion"
implementation "com.fasterxml.jackson.core:jackson-core:$jacksonVersion"
implementation "com.discord4j:discord4j-core:$discordVersion"
implementation "org.jooq:jooq:$jooqVersion"
implementation "org.xerial:sqlite-jdbc:$sqliteJdbcVersion"
implementation "jakarta.xml.bind:jakarta.xml.bind-api:$jakartaXmlBindVersion"
compileOnly "org.projectlombok:lombok:$lombokVersion"
annotationProcessor "org.projectlombok:lombok:$lombokVersion"
testImplementation "com.typesafe.akka:akka-actor-testkit-typed_3:$akkaVersion"
testImplementation "com.typesafe.akka:akka-testkit_3:$akkaVersion"
testImplementation "junit:junit:$junitVersion"
}
mainClassName = 'org.yagi.motel.Kernel'