-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
40 lines (31 loc) · 1004 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
import org.apache.tools.ant.filters.ReplaceTokens
group 'io.github.scarger.referme'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven {
url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
}
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots'
}
maven {
url 'http://nexus.hc.to/content/repositories/pub_releases'
}
}
dependencies {
compile group: 'org.spigotmc', name: 'spigot-api', version: '1.8.8-R0.1-SNAPSHOT'
compile group: 'net.md-5', name: 'bungeecord-api', version: '1.8-SNAPSHOT'
compile group: 'net.milkbowl.vault', name: 'VaultAPI', version: '1.6'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
processResources {
filter(ReplaceTokens,
tokens: [version: project.version,
name: project.name, main: "${project.group}.Loader".toString()])
}
jar {
archiveName "ReferME.jar"
}