-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle.kts
53 lines (42 loc) · 1.19 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 org.jetbrains.kotlin.gradle.tasks.KotlinCompile
buildscript {
val kotlinVersion: String by extra { "1.3.50" }
repositories {
jcenter()
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
classpath("org.jetbrains.kotlin:kotlin-serialization:$kotlinVersion")
}
}
plugins {
kotlin("jvm") version "1.3.50"
maven
}
apply {
plugin("kotlinx-serialization")
}
group = "com.krzysztofsroga"
version = "0.1.4-alpha"
repositories {
mavenCentral()
maven(url = "https://jitpack.io") {
name = "jitpack"
}
maven(url = "https://kotlin.bintray.com/kotlinx")
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("com.github.kittinunf.fuel:fuel:2.2.+")
implementation("com.github.kittinunf.fuel:fuel-coroutines:2.2.+")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.13.+")
implementation("org.jsoup:jsoup:1.12.+")
testImplementation("io.mockk:mockk:1.9.+")
testImplementation("org.junit.jupiter:junit-jupiter:5.5.+")
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}
tasks.withType<Test> {
useJUnitPlatform()
}