-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (31 loc) · 911 Bytes
/
build.gradle
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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.5.30'
id 'maven-publish'
}
group 'cc.lynzie.kotlinfm'
version '0.0.1'
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.5.30"
implementation 'org.junit.jupiter:junit-jupiter:5.7.2'
testImplementation 'org.jetbrains.kotlin:kotlin-test:1.5.30'
implementation 'io.github.microutils:kotlin-logging:2.0.11'
implementation "com.google.code.gson:gson:2.8.8"
def ktorVersion = '1.6.3'
implementation "io.ktor:ktor-client-core:$ktorVersion"
implementation "io.ktor:ktor-client-json:$ktorVersion"
implementation "io.ktor:ktor-client-okhttp:$ktorVersion"
implementation "io.ktor:ktor-client-gson:$ktorVersion"
}
test {
useJUnitPlatform()
}
publishing {
publications {
library(MavenPublication) {
from components.java
}
}
}