-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
41 lines (32 loc) · 889 Bytes
/
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
plugins {
val kotlinVersion = "1.4.21"
kotlin("jvm") version kotlinVersion
kotlin("plugin.serialization") version kotlinVersion
id("java")
id("net.mamoe.mirai-console") version "2.4.2" // mirai-console version
}
group = "org.example"
version = "0.1.0"
java.sourceCompatibility = JavaVersion.VERSION_11
java.targetCompatibility = JavaVersion.VERSION_11
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven("https://dl.bintray.com/kotlin/kotlin-eap")
maven {
setUrl("https://jitpack.io")
}
mavenCentral()
//flatDir {dirs("libs")}
}
tasks.compileJava{
options.isIncremental = true
options.isFork = false
options.isFailOnError = false
}
dependencies {
implementation("com.google.code.gson:gson:2.8.3")
//compile("project:rkon-core:1.1.2")
implementation ( "com.github.Glavo:rcon-java:2.0.1")
}