forked from ShaneBeee/skript-reflect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (34 loc) · 849 Bytes
/
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
import org.apache.tools.ant.filters.ReplaceTokens
group 'com.btk5h.skript-mirror'
version '2.3'
apply plugin: 'java'
repositories {
mavenCentral()
maven {
url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
}
maven {
url 'https://oss.sonatype.org/content/groups/public/'
}
maven {
url 'https://repo.destroystokyo.com/repository/maven-public/'
}
maven {
url 'https://repo.skriptlang.org/releases'
}
}
processResources {
filter ReplaceTokens, tokens: [
"version": version
]
}
compileJava {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
options.encoding = 'UTF-8'
}
dependencies {
implementation 'org.spigotmc:spigot-api:1.13.2-R0.1-SNAPSHOT'
implementation 'com.github.SkriptLang:Skript:2.6.3'
implementation 'org.eclipse.jdt:org.eclipse.jdt.annotation:1.1.0'
}