forked from Heapy/awesome-kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
53 lines (43 loc) · 1.34 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
import Dep.Kotlin.reflect
import Dep.Kotlin.stdlib
import Dep.commonmark
import Dep.commonmarkExtGfmTables
import Dep.coroutines
import Dep.httpClient
import Dep.jacksonKotlin
import Dep.jacksonXml
import Dep.junit
import Dep.kotlinVersion
import Dep.mockk
plugins {
application
kotlin("jvm") version Dep.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("org.slf4j:slf4j-api:1.7.25")
implementation("ch.qos.logback:logback-classic:1.2.3")
implementation("io.sentry:sentry-logback:1.6.3")
implementation("com.rometools:rome:1.7.0")
implementation("com.github.dfabulich:sitemapgen4j:1.0.6")
implementation("org.jsoup:jsoup:1.10.2")
implementation("by.heap.remark:remark-kotlin:1.2.0")
implementation("org.jetbrains.kotlin:kotlin-script-util:$kotlinVersion")
implementation("org.jetbrains.kotlin:kotlin-compiler-embeddable:$kotlinVersion")
implementation(commonmark)
implementation(commonmarkExtGfmTables)
implementation(httpClient)
testImplementation(mockk)
testImplementation(junit)
}