forked from TabooLib/adyeshach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
50 lines (43 loc) · 1.5 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
plugins {
id 'java'
id 'io.izzel.taboolib' version '1.2'
id 'org.jetbrains.kotlin.jvm' version '1.4.0-rc'
}
group = 'ink.ptms.adyeshach'
version = '1.0.5 TEST'
sourceCompatibility = 1.8
targetCompatibility = 1.8
taboolib {
tabooLibVersion = '5.46'
loaderVersion = '2.10'
classifier = null
relocate('io.izzel.kether.common', 'ink.ptms.adyeshach.common.script.kether')
}
task buildJar(dependsOn: [clean, jar])
repositories {
mavenCentral()
}
dependencies {
taboo 'io.izzel.kether.common:Kether:1.0'
compile 'ink.ptms.cronus:Cronus:1'
compile 'net.citizensnpcs:Citizens:2.0.18'
compile 'com.guillaumevdn.gcore:GCore:7.15.0'
compile 'com.guillaumevdn.questcreator:QuestCreator:5.30.0'
compile 'com.isnakebuzz.servernpc:ServerNPC:1.12.10:RELEASE'
compile 'public:ModelEngineAPI:1.0.0'
compile 'ink.ptms.core:v11600:11600:all'
compile 'ink.ptms.core:v11500:11500:all'
compile 'ink.ptms.core:v11400:11400:all'
compile 'ink.ptms.core:v11300:11300:all'
compile 'ink.ptms.core:v11200:11200:all'
compile 'ink.ptms.core:v11100:11100:all'
compile 'ink.ptms.core:v11000:11000:all'
compile 'ink.ptms.core:v10900:10900:all'
compile 'org.jetbrains.kotlin:kotlin-stdlib'
compileOnly fileTree(dir: 'libs', includes: ['*.jar'])
}
processResources {
from(sourceSets.main.resources.srcDirs) {
expand name: rootProject.name, main: project.group + ".boot.PluginBoot", version: project.version, "libVersion": taboolib.tabooLibVersion
}
}