-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (28 loc) · 933 Bytes
/
build.gradle
File metadata and controls
35 lines (28 loc) · 933 Bytes
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
import org.apache.tools.ant.filters.ReplaceTokens
plugins {
id 'java'
}
group = 'me.blueyescat.skriptlogs'
version = '0.1.3'
sourceCompatibility = 1.8
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
repositories {
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 'https://jitpack.io' }
maven { url 'http://maven.sk89q.com/repo' }
maven { url 'https://repo.destroystokyo.com/repository/maven-public' }
}
processResources {
filter(ReplaceTokens, tokens: [version: version])
}
dependencies {
implementation 'org.spigotmc:spigot-api:1.14.3-R0.1-SNAPSHOT'
implementation 'com.github.SkriptLang:Skript:dev36'
}
jar {
archiveName = "skript-logs.$extension"
}