forked from Double0negative/SuperCraftBros
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle
More file actions
29 lines (26 loc) · 691 Bytes
/
build.gradle
File metadata and controls
29 lines (26 loc) · 691 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
import org.apache.tools.ant.filters.ReplaceTokens
plugins {
id 'java'
id 'maven'
id 'com.github.johnrengelman.shadow' version '4.0.4'
}
group = 'net.nextinfinity'
version = scbversion
defaultTasks "jar"
repositories {
maven { url "https://mymavenrepo.com/repo/2HCXIs5LYi74Ylaq1Qen/" }
mavenLocal()
}
dependencies {
compile(group: 'net.nextinfinity', name: 'core', version:'1.0.1') {
transitive = false
}
compileOnly(group: 'org.spigotmc', name: 'spigot-api', version: '1.13.2-R0.1-SNAPSHOT') {
transitive = false
}
}
processResources {
filter ReplaceTokens, tokens: [
"scbversion": project.property("scbversion")
]
}