-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
40 lines (34 loc) · 969 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
39
40
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.4.31'
id 'com.github.johnrengelman.shadow' version '5.2.0'
}
group 'nl.sugcube.dirtyarrows'
version '5.0'
repositories {
mavenCentral()
flatDir {
dirs 'lib'
}
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compile group: 'org.apache.clerezza.ext', name: 'org.json.simple', version: '0.4'
// Bukkit jar
// implementation name: 'bukkit-1.11.2'
// implementation name: 'bukkit-1.12.2'
// implementation name: 'bukkit-1.13.2'
// implementation name: 'bukkit-1.14.4'
// implementation name: 'bukkit-1.15.2'
// implementation name: 'bukkit-1.16.5'
// implementation name: 'bukkit-1.17.1'
// implementation name: 'bukkit-1.18.2'
implementation name: 'bukkit-1.19.2'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}