-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
68 lines (59 loc) · 2.71 KB
/
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
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
67
68
version = 'SERVER-SNAPSHOT'
group = "de.terraconia";
def isBungee = false
project.ext.set('isBungee', isBungee)
buildscript {
if(project.hasProperty('tcGradleScripts')) {
apply from: file(tcGradleScripts + '/tc-buildscript.gradle'), to: buildscript
}
}
subprojects {
tasks.withType(Javadoc).all { enabled = false }
}
apply plugin: 'java'
//compileJava.options.encoding = 'windows-1252' // optional für konvertierte Projekte
if(project.hasProperty('tcGradleScripts')) {
apply from: tcGradleScripts + '/tc-project.gradle'
}
repositories {
mavenCentral()
mavenLocal()
// maven { url 'http://terraconia.de:8081/artifactory/terraconia-repos' }
maven {
url "http://maven.sk89q.com/artifactory/repo/"
}
//maven { url "http://repo.mcstats.org/content/repositories/releases/" }
maven {
url "http://nexus.hc.to/content/repositories/pub_releases/"
}
maven {
url "http://ci.xephi.fr/plugin/repository/everything/"
}
maven {
url "https://hub.spigotmc.org/nexus/content/groups/public"
}
maven {
url "http://exlll.de:8081/artifactory/releases"
}
maven { url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
maven { url 'https://repo.minebench.de/' }
flatDir {
dirs 'libs'
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile group: 'org.spigotmc', name: 'spigot-api', version: '1.12-R0.1-SNAPSHOT', changing: false, transitive: false
// compile group: 'org.bukkit', name: 'craftbukkit', version: '1.12-R0.1-SNAPSHOT', changing: false, transitive: false
// compile group: 'tc.plugins', name: 'bukkit', version: 'SERVER-SNAPSHOT', changing: true, transitive: false
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.0-beta9', changing: true, transitive: true
compile group: 'org.mcstats.bukkit', name: 'metrics', version: 'R8-SNAPSHOT', changing: true, transitive: false
compile group: 'net.milkbowl.vault', name: 'Vault', version: '1.6.6', changing: true, transitive: false
compile group: 'com.sk89q.worldguard', name: 'worldguard-legacy', version: '6.2', changing: true, transitive: false
compile group: 'com.sk89q', name: 'worldedit', version: '6.0.0-SNAPSHOT', changing: true, transitive: false
compile group: 'de.exlll', name: 'databaselib-bukkit', version: '2.0.0'
compile group: 'de.exlll', name: 'configlib-bukkit', version: '1.4.0'
compile group: 'de.exlll', name: 'asynclib-bukkit', version: '2.1.0'
compile group: 'com.acrobot.chestshop', name: 'chestshop', version: '3.8.13-SNAPSHOT', changing: false, transitive: true
//compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.5'
}