-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
executable file
·36 lines (30 loc) · 1.15 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
import org.apache.tools.ant.filters.ReplaceTokens
plugins {
id 'java'
}
group 'com.rpkit'
version '1.3.0'
compileJava {
sourceCompatibility = "17"
targetCompatibility = "17"
}
repositories {
mavenCentral()
maven { url 'https://hub.spigotmc.org/nexus/content/groups/public/' }
maven { url 'https://ci.ender.zone/plugin/repository/everything/' }
maven { url 'https://repo.rpkit.com/repository/maven-releases/' }
maven { url 'https://jitpack.io/' }
}
dependencies {
implementation 'org.spigotmc:spigot-api:1.19-R0.1-SNAPSHOT'
implementation group: 'com.rpkit', name: 'rpk-core-bukkit', version: '2.4.1', classifier: 'all'
implementation group: 'com.rpkit', name: 'rpk-player-lib-bukkit', version: '2.4.1', classifier: 'all'
implementation group: 'com.rpkit', name: 'rpk-character-lib-bukkit', version: '2.4.1', classifier: 'all'
implementation group: 'com.rpkit', name: 'rpk-drink-lib-bukkit', version: '2.4.1', classifier: 'all'
implementation group: 'com.github.DieReicheErethons', name: 'Brewery', version: '3.1.1'
}
processResources {
filter ReplaceTokens, tokens: [
"version": version
]
}