-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
48 lines (42 loc) · 1.21 KB
/
build.gradle
File metadata and controls
48 lines (42 loc) · 1.21 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
plugins {
id 'java'
}
group = 'com.flyaway.tops'
version = '1.2.0'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
repositories {
mavenCentral()
maven {
name = "papermc"
url = "https://repo.papermc.io/repository/maven-public/"
}
maven { url = 'https://repo.lucko.me/' }
maven { url = 'https://repo.nightexpressdev.com/releases' }
maven { url = 'https://jitpack.io' }
maven { url = "https://repo.extendedclip.com/content/repositories/placeholderapi/" }
}
dependencies {
compileOnly "io.papermc.paper:paper-api:1.21.10-R0.1-SNAPSHOT"
compileOnly "dev.aurelium:auraskills-api-bukkit:2.3.8"
compileOnly "net.luckperms:api:5.5"
compileOnly "su.nightexpress.coinsengine:CoinsEngine:2.6.0"
compileOnly 'com.github.flyawaymaking:TimeReward:master-SNAPSHOT'
compileOnly 'com.github.flyawaymaking:TrackPlayer:master-SNAPSHOT'
compileOnly 'me.clip:placeholderapi:2.11.7'
}
tasks.jar {
archiveBaseName.set("TopsSystem")
}
tasks.processResources {
filesMatching("plugin.yml") {
expand(
version: project.version,
name: project.name,
group: project.group
)
}
}