-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
45 lines (40 loc) · 1.38 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
import org.apache.tools.ant.filters.ReplaceTokens
plugins {
id 'java'
}
group = 'com.franciscodadone'
version = '0.1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
name = 'spigotmc-repo'
url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
}
maven {
name "papermc"
url "https://papermc.io/repo/repository/maven-public/"
}
maven {
name = 'sonatype'
url = 'https://oss.sonatype.org/content/groups/public/'
}
maven { url 'https://jitpack.io/' }
maven { url 'https://maven.enginehub.org/repo/' }
maven { url = 'https://oss.sonatype.org/content/groups/public' }
maven { url = 'https://repo.extendedclip.com/content/repositories/placeholderapi/' }
maven { url "https://repo.codemc.io/repository/maven-public/" }
}
dependencies {
implementation 'org.jetbrains:annotations:22.0.0'
compileOnly 'org.spigotmc:spigot-api:1.16.5-R0.1-SNAPSHOT'
compileOnly 'com.github.MilkBowl:VaultAPI:1.7'
compileOnly 'com.sk89q.worldguard:worldguard-bukkit:7.0.0'
implementation "com.tchristofferson:ConfigUpdater:1.2-SNAPSHOT"
compileOnly 'me.clip:placeholderapi:2.11.1'
implementation 'com.gmail.filoghost.holographicdisplays:holographicdisplays-api:2.4.9'
}
processResources {
from(sourceSets.main.resources.srcDirs) {
filter ReplaceTokens, tokens: [version: version]
}
}