-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
39 lines (33 loc) · 839 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
plugins {
id 'java'
id 'io.izzel.taboolib' version '1.3'
}
group = 'org.npbeta.ShipAddressManager'
version = '1.0.0'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
taboolib {
tabooLibVersion = '5.62'
loaderVersion = '2.8'
classifier = null
builtin = true
}
repositories {
mavenCentral()
}
dependencies {
implementation 'ink.ptms.core:v11600:11600:all'
implementation fileTree(dir: 'libs', includes: ['*.jar'])
}
processResources {
from(sourceSets.main.resources.srcDirs) {
include 'plugin.yml'
expand(
name: rootProject.name,
main: project.group + ".boot.PluginBoot",
version: project.version,
libVersion: taboolib.tabooLibVersion,
loaderVersion: taboolib.loaderVersion
)
}
}