-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
29 lines (24 loc) · 883 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
version = 'SERVER-SNAPSHOT'
group = "de.terraconia";
project.ext.targetServerGroups = ['survival']
project.ext.targetServers = ['spawn']
project.ext.useWindowsEncoding = true
buildscript {
if (project.hasProperty('tcGradleScripts')) {
apply from: file(tcGradleScripts + '/tc-buildscript.gradle'), to: buildscript
}
repositories {
mavenCentral()
}
}
if (project.hasProperty('tcGradleScripts')) {
apply from: tcGradleScripts + '/tc-project.gradle'
}
repositories {
mavenCentral()
}
dependencies {
compile group: 'tc.plugins', name: 'bukkit', version: 'SERVER-SNAPSHOT', changing: true, transitive: false
compile group: 'tc.plugins', name: 'chestshop', version: 'SERVER-SNAPSHOT', changing: true, transitive: false
compile group: 'de.terraconia', name: 'Baba43Lib', version: 'SERVER-SNAPSHOT', changing: true, transitive: false
}