forked from CodeCrafter47/GlobalTablist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (40 loc) · 1.21 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
plugins {
id "com.github.johnrengelman.shadow" version "1.2.3"
}
allprojects {
apply plugin: 'java'
apply plugin: 'maven'
group = 'de.codecrafter47.globaltablist'
version = '1.13-SNAPSHOT'
description = """"""
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url "http://nexus.codecrafter47.dyndns.eu/content/repositories/public/" }
maven { url "http://repo.md-5.net/content/repositories/snapshots/" }
}
dependencies {
compileOnly group: 'net.md-5', name: 'bungeecord-proxy', version: '1.11-SNAPSHOT'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.16.12'
}
}
dependencies {
compileOnly group: 'com.imaginarycode.minecraft', name: 'RedisBungee', version: '0.3.8-SNAPSHOT'
compileOnly group: 'net.cubespace', name: 'Yamler-Bungee', version: '2.4.0-SNAPSHOT'
compile project(":api")
}
sourceSets {
main {
java {
srcDir project(':api').file('src/main/java')
}
}
}
processResources {
expand(project.properties)
}
shadowJar {
classifier = null
}