-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
41 lines (34 loc) · 1.21 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
import org.apache.tools.ant.filters.ReplaceTokens
plugins {
id 'java'
}
group 'me.blueyescat.skriptholo'
version '1.0.2'
sourceCompatibility = 1.8
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
repositories {
jcenter()
mavenCentral()
maven { url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots' }
maven { url 'https://oss.sonatype.org/content/groups/public' }
maven { url 'http://nexus.hc.to/content/repositories/pub_releases' }
maven { url 'http://maven.sk89q.com/repo' }
maven { url 'https://repo.destroystokyo.com/repository/maven-public' }
maven { url 'https://ci.filoghost.me/plugin/repository/everything' }
maven { url 'http://repo.dmulloy2.net/nexus/repository/public/' }
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'org.spigotmc:spigot-api:1.14.4-R0.1-SNAPSHOT'
implementation 'com.github.SkriptLang:Skript:dev36'
implementation 'com.gmail.filoghost.holographicdisplays:holographicdisplays-api:2.3.2'
implementation 'com.comphenix.protocol:ProtocolLib:4.4.0'
compile fileTree(include: ['*.jar'], dir: 'lib')
}
processResources {
filter(ReplaceTokens, tokens: [version: version])
}
jar {
archiveName = "skript-holo.$extension"
}