forked from Micalhl/Wayback
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
66 lines (57 loc) · 1.76 KB
/
build.gradle
File metadata and controls
66 lines (57 loc) · 1.76 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
apply plugin: 'java'
group = pluginGroup
version = pluginVersion
sourceCompatibility = 1.8
targetCompatibility = 1.8
defaultTasks 'build'
repositories {
maven {
url "http://ptms.ink:8081/repository/codemc-nms/"
allowInsecureProtocol = true
}
maven {
url "http://ptms.ink:8081/repository/maven-releases/"
allowInsecureProtocol = true
}
maven {
name = 'spigotmc-repo'
url = 'https://hub.spigotmc.org/nexus/content/groups/public/'
}
maven {
name = 'sonatype'
url = 'https://oss.sonatype.org/content/groups/public/'
}
maven {
url = 'https://jitpack.io'
}
maven {
url 'http://repo.extendedclip.com/content/repositories/placeholderapi/'
allowInsecureProtocol = true
}
maven {
url 'https://raw.github.com/asbachb/mvn-repo/master/releases'
}
mavenCentral()
}
dependencies {
testCompileOnly group: 'junit', name: 'junit', version: '4.12'
compileOnly 'org.spigotmc:spigot-api:1.15.1-R0.1-SNAPSHOT'
//implementation 'com.github.Bkm016:TabooLib:5.09'
//compile 'io.izzel.taboolib:TabooLib:5.13:all'
//compile 'io.izzel.taboolib.loader:TabooLibloader:1.2:all'
compileOnly 'com.github.asbachb:ftp4j:1.7.3'
compileOnly 'org.codehaus.jackson:jackson-mapper-asl:1.9.13'
//compile 'org.tukaani:xz:1.8'
//compile 'net.sf.sevenzipjbinding:sevenzipjbinding:9.20-2.00beta'
compileOnly group: 'net.lingala.zip4j', name: 'zip4j', version: '1.3.2'
compileOnly 'org.jetbrains:annotations:24.0.0'
}
import org.apache.tools.ant.filters.ReplaceTokens
processResources {
def props = [version: version]
inputs.properties props
filteringCharset 'UTF-8'
filesMatching('plugin.yml') {
expand props
}
}