-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (25 loc) · 781 Bytes
/
Copy pathbuild.gradle
File metadata and controls
32 lines (25 loc) · 781 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
30
31
32
plugins {
id 'io.franzbecker.gradle-lombok' version '1.11'
id 'java'
}
repositories {
mavenCentral()
maven {
name 'BungeeCord'
url 'https://oss.sonatype.org/content/repositories/snapshots'
}
}
group 'com.techsdev.bungeenet'
version '1.0.0'
apply plugin: 'java'
sourceCompatibility = 1.8
dependencies {
// Flowpowered NBT is bundled with BungeeCord, but I couldn't figure out how to include all BungeeCord related files with Gradle without using the actual release
// Just make a new folder 'lib' and put BungeeCord in there.
//compile 'net.md-5:bungeecord-api:1.12-SNAPSHOT'
//compile 'com.flowpowered:flow-nbt:1.0.1-SNAPSHOT'
compile files('lib/BungeeCord.jar');
}
lombok {
sha256 = "" // skip verifyLombok task
}