forked from TheChance101/Honey-Mart-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
66 lines (46 loc) · 1.7 KB
/
build.gradle.kts
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
val ktor_version: String by project
val kotlin_version: String by project
val logback_version: String by project
val exposed_version : String by project
val h2_version : String by project
val koin_version:String by project
val firebase_version : String by project
plugins {
kotlin("jvm") version "1.8.10"
id("io.ktor.plugin") version "2.2.4"
id("org.jetbrains.kotlin.plugin.serialization") version "1.8.10"
id("application")
}
group = "com.the_chance"
version = "0.0.1"
application {
mainClass.set("com.the_chance.ApplicationKt")
val isDevelopment: Boolean = project.ext.has("development")
applicationDefaultJvmArgs = listOf("-Dio.ktor.development=$isDevelopment")
}
ktor {
fatJar {
archiveFileName.set("honey-mart.jar")
}
}
repositories {
mavenCentral()
gradlePluginPortal()
}
dependencies {
api(project("app:core"))
api(project("app:api"))
implementation("io.ktor:ktor-server-call-logging-jvm:$ktor_version")
implementation("io.ktor:ktor-server-swagger:$ktor_version")
implementation("io.ktor:ktor-server-auth-jvm:$ktor_version")
implementation("io.ktor:ktor-server-auth-jwt-jvm:$ktor_version")
implementation("io.ktor:ktor-server-netty-jvm:$ktor_version")
testImplementation("io.ktor:ktor-server-tests-jvm:$ktor_version")
implementation ("io.insert-koin:koin-ktor:$koin_version")
implementation ("io.insert-koin:koin-logger-slf4j:$koin_version")
implementation ("ch.qos.logback:logback-classic:1.4.7")
implementation ("org.jetbrains.kotlin:kotlin-stdlib:1.6.10")
implementation("io.ktor:ktor-server-status-pages:$ktor_version")
// firebase
implementation("com.google.firebase:firebase-admin:9.0.0")
}