-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
52 lines (45 loc) · 1.44 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
plugins {
id 'java-library'
id 'maven-publish'
id "org.jetbrains.kotlin.jvm" version '1.5.0'
id 'org.jetbrains.dokka' version '1.4.32'
id "com.github.ben-manes.versions" version "0.38.0"
id 'org.jetbrains.kotlin.plugin.serialization' version '1.5.0'
}
group 'com.github.kwebio'
version '0.4.35'
repositories {
mavenCentral()
maven { url "https://dl.bintray.com/kotlin/ktor" }
maven { url 'https://jitpack.io' }
maven { url 'https://plugins.gradle.org/m2' }
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.5.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.0"
implementation 'com.google.guava:guava:30.1.1-jre'
implementation "org.jetbrains.kotlinx:kotlinx-serialization-core:1.2.0"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-protobuf:1.2.0"
implementation "org.mapdb:mapdb:3.0.8"
testImplementation "io.kotest:kotest-runner-junit5-jvm:4.5.0"
testImplementation "io.kotest:kotest-assertions-core-jvm:4.5.0"
testImplementation "io.kotest:kotest-property:4.5.0"
}
test {
useJUnitPlatform()
}
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions {
jvmTarget = "1.8"
}
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
repositories {
mavenLocal()
}
}