-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (30 loc) · 925 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.3.72'
id 'com.github.johnrengelman.shadow' version '5.2.0'
}
group 'club.rarlab'
version '0.0.1'
repositories {
// Include the spigot repository.
maven { url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
// Include the sonatype repository.
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
// Include PAPI's repository.
maven { url 'https://repo.extendedclip.com/content/repositories/placeholderapi/' }
mavenCentral()
mavenLocal()
}
dependencies {
// spigot
compileOnly 'org.spigotmc:spigot-api:1.16.1-R0.1-SNAPSHOT'
// placeholderapi
compileOnly 'me.clip:placeholderapi:2.10.6'
// kotlin
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
}
compileKotlin {
kotlinOptions.jvmTarget = '1.8'
}
shadowJar {
archiveName "DustyPvP-${version}.jar"
}