forked from shosetsuorg/kotlin-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
57 lines (44 loc) · 1.45 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
54
55
56
57
import org.gradle.jvm.tasks.Jar
group = "app.shosetsu.lib"
version = "1.0.0"
description = "Kotlin library for shosetsu"
plugins {
kotlin("jvm") version "1.6.10"
id("org.jetbrains.dokka") version "1.6.10"
kotlin("plugin.serialization") version "1.6.10"
maven
}
val dokkaJar by tasks.creating(Jar::class) {
group = JavaBasePlugin.DOCUMENTATION_GROUP
description = "Assembles Kotlin docs with Dokka"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
repositories {
jcenter()
mavenCentral()
maven("https://jitpack.io")
}
dependencies {
dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.6.0")
// ### Core Libraries
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2")
// java only
implementation("org.jsoup:jsoup:1.14.3")
implementation("org.luaj:luaj-jse:3.0.1")
implementation("com.squareup.okhttp3:okhttp:4.9.3")
implementation("com.google.guava:guava:31.0.1-jre")
// ### Testing Libraries
testImplementation(kotlin("stdlib"))
testImplementation(kotlin("stdlib-jdk8"))
//testImplementation("net.java.dev.jna:jna:5.8.0") // for KTS
testImplementation(kotlin("reflect"))
//testImplementation(kotlin("script-runtime"))
//testImplementation(kotlin("script-util"))
//testImplementation(kotlin("compiler-embeddable"))
//testImplementation(kotlin("scripting-compiler-embeddable"))
//testImplementation(kotlin("script-util"))
testImplementation(kotlin("test"))
}