mirror of
https://github.com/Matte23/circolapp.git
synced 2025-12-06 07:29:10 +00:00
Add backend module
This commit is contained in:
23
backend/build.gradle.kts
Normal file
23
backend/build.gradle.kts
Normal file
@@ -0,0 +1,23 @@
|
||||
plugins {
|
||||
id("kotlin-platform-jvm")
|
||||
id("application")
|
||||
id("com.github.johnrengelman.shadow")
|
||||
}
|
||||
|
||||
group = "net.underdesk"
|
||||
version = "0.0.1"
|
||||
|
||||
dependencies {
|
||||
implementation(project(":shared"))
|
||||
implementation(Dependencies.Kotlin.core)
|
||||
implementation(Dependencies.Kotlin.coroutinesCore)
|
||||
|
||||
implementation(Dependencies.Ktor.ktorCore)
|
||||
|
||||
implementation(Dependencies.Firebase.adminSDK)
|
||||
}
|
||||
|
||||
application {
|
||||
mainClass.set("net.underdesk.circolapp.backend.ServerKt")
|
||||
mainClassName = "net.underdesk.circolapp.backend.ServerKt"
|
||||
}
|
||||
Reference in New Issue
Block a user