-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
65 lines (49 loc) · 1.53 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
import org.apache.tools.ant.filters.ReplaceTokens
plugins {
id 'com.github.johnrengelman.shadow' version '8.1.1'
id 'java'
}
repositories {
mavenCentral()
// Spigot
maven {
url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
}
// Bungeecord
maven {
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
// BentoBox
maven {
url 'https://repo.codemc.org/repository/maven-public/'
}
// uSkyBlock
maven {
url 'https://www.uskyblock.ovh/maven/uskyblock/'
}
// Skript
maven {
url 'https://repo.skriptlang.org/releases'
}
}
dependencies {
// Nullable annotation
implementation (group: 'org.eclipse.jdt', name: 'org.eclipse.jdt.annotation', version: '2.3.100')
// Spigot/Bukkit
implementation (group: 'org.spigotmc', name: 'spigot-api', version: '1.21.4-R0.1-SNAPSHOT')
// Skript
implementation (group: 'com.github.SkriptLang', name: 'Skript', version: '2.10.1') {
transitive = false
}
// uSkyBlock
implementation (group: 'com.github.rlf', name: 'uSkyBlock-API', version: '3.2.0-SNAPSHOT')
// BentoBox
implementation (group: 'world.bentobox', name: 'bentobox', version: '2.7.0')
implementation (group: 'world.bentobox', name: 'bskyblock', version: '1.9.0-SNAPSHOT')
implementation (group: 'world.bentobox', name: 'challenges', version: '1.3.2-SNAPSHOT')
implementation (group: 'world.bentobox', name: 'level', version: '2.17.0-SNAPSHOT')
implementation fileTree(dir: 'lib', include: '*.jar')
}
processResources {
filter ReplaceTokens, tokens: ["version": project.property("version")]
}