-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
47 lines (37 loc) · 903 Bytes
/
Copy pathbuild.gradle
File metadata and controls
47 lines (37 loc) · 903 Bytes
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
39
40
41
42
43
44
45
46
47
import org.jetbrains.kotlin.gradle.dsl.ExplicitApiMode
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath libs.kotlin.gradle.plugin
classpath libs.kotlin.serialization.plugin
}
}
plugins {
alias libs.plugins.kotlin.jvm
alias libs.plugins.kotlin.serialization
id 'application'
}
repositories {
mavenCentral()
maven { url "https://git.inmo.dev/api/packages/InsanusMokrassar/maven" }
}
kotlin {
explicitApi(ExplicitApiMode.Strict)
}
dependencies {
implementation libs.kotlin
implementation libs.tgbotapi
implementation libs.githubApi
implementation libs.jwtApi
runtimeOnly libs.bundles.jwtRuntimeOnly
implementation libs.ktorNetty
}
application {
mainClassName = 'app.AppKt'
}
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}