forked from Heapy/awesome-kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
46 lines (36 loc) · 1.17 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
plugins {
application
kotlin("jvm").version(kotlinVersion)
}
application {
mainClassName = "link.kotlin.scripts.Application"
}
repositories {
jcenter()
maven { url = uri("https://dl.bintray.com/heapy/heap") }
}
dependencies {
implementation(stdlib)
implementation(reflect)
implementation(coroutines)
implementation(jacksonXml)
implementation(jacksonKotlin)
implementation(jacksonJsr310)
implementation("org.slf4j:slf4j-api:1.7.30")
implementation("ch.qos.logback:logback-classic:1.2.3")
implementation("io.sentry:sentry-logback:1.7.30")
implementation("com.rometools:rome:1.12.2")
implementation("com.github.dfabulich:sitemapgen4j:1.1.2")
implementation("org.jsoup:jsoup:1.13.1")
implementation("by.heap.remark:remark-kotlin:1.2.0")
implementation(kotlin("scripting-common"))
implementation(kotlin("scripting-jvm"))
implementation(kotlin("scripting-jvm-host"))
implementation(commonmark)
implementation(commonmarkExtGfmTables)
implementation(ktorClientApache)
implementation(ktorClientJackson)
testImplementation(mockk)
testImplementation(junitApi)
testRuntimeOnly(junitEngine)
}