-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
82 lines (69 loc) · 1.53 KB
/
Copy pathbuild.gradle
File metadata and controls
82 lines (69 loc) · 1.53 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
buildscript {
repositories {
maven {
url "https://maven.aliyun.com/repository/public/"
}
}
dependencies {
classpath "gradle.plugin.io.izzel.taboolib:taboolib-gradle-plugin:1.3"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.30-RC"
classpath "gradle.plugin.net.kyori:blossom:1.1.0"
}
}
plugins {
id 'java'
id 'maven'
}
apply plugin: "org.jetbrains.kotlin.jvm"
apply plugin: "io.izzel.taboolib"
apply plugin: "net.kyori.blossom"
group = 'pro.sandiao'
version = '1.0.4'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
taboolib {
tabooLibVersion = '5.44'
loaderVersion = '2.8'
classifier = null
}
repositories {
maven {
url 'https://maven.aliyun.com/repository/central'
}
maven{
url 'https://maven.aliyun.com/repository/public'
}
jcenter()
mavenCentral()
maven{
url 'https://jitpack.io'
}
}
dependencies {
compile 'org.jetbrains.kotlin:kotlin-stdlib'
compileOnly 'ink.ptms.core:v11600:11600:all'
compileOnly 'com.github.SkriptLang:Skript:2.5.1'
compileOnly 'net.mamoe:mirai-core:2.1.1'
compileOnly fileTree(dir: 'libs', includes: ['*.jar'])
}
processResources {
filteringCharset 'UTF-8'
filesMatching('plugin.yml'){
expand(
project: project,
taboolib: taboolib,
)
}
}
blossom {
}
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}