28 lines
589 B
Kotlin
28 lines
589 B
Kotlin
plugins {
|
|
id("java")
|
|
application
|
|
}
|
|
|
|
group = "org.example"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(platform("org.junit:junit-bom:5.10.0"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
|
implementation("org.jsoup:jsoup:1.17.2")
|
|
implementation("com.google.firebase:firebase-admin:9.2.0")
|
|
implementation("com.google.code.gson:gson:2.10.1")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
application {
|
|
mainClass.set("org.example.Main")
|
|
} |