-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
74 lines (61 loc) · 1.56 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
defaultTasks 'clean', 'screamCompile'
import org.apache.tools.ant.filters.*
allprojects {
group = 'org.screamingsandals.misc'
version = '1.0.0'
}
buildscript {
repositories {
jcenter()
maven {
name 'screamingsandals'
url = 'https://repo.screamingsandals.org/public/'
}
}
dependencies {
classpath 'org.screamingsandals.gradle.builder:screaming-plugin-builder:1.0.41'
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'org.screamingsandals.gradle.builder.lite'
repositories {
papermc()
}
processResources {
filter ReplaceTokens, tokens: [
"version": project.version,
"name": project.name,
"group": project.group
]
}
dependencies {
compileOnly paper()
compileOnly waterfall()
}
sourceCompatibility = '1.8'
enableShadowPlugin()
shadowJar {
relocate project.group, project.group + '.' + project.name
}
}
project(':groovy') {
version = '3.0.16'
dependencies {
implementation 'org.codehaus.groovy:groovy:' + version
}
}
project(':univocity') {
version = '2.8.3'
dependencies {
implementation 'com.univocity:univocity-parsers:' + version
}
}
/*project(':kotlin') {
version = '1.4.21'
dependencies {
shade 'org.jetbrains.kotlin:kotlin-script-runtime:' + version
shade 'org.jetbrains.kotlin:kkotlin-script-util:' + version
shade 'org.jetbrains.kotlin:kotlin-compiler-embeddable:' + version
}
}*/