-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
47 lines (39 loc) · 916 Bytes
/
build.gradle
File metadata and controls
47 lines (39 loc) · 916 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
plugins {
id 'java'
id 'maven'
id 'com.github.johnrengelman.shadow' version '1.2.3'
id 'org.spongepowered.plugin' version '0.6'
}
sponge {
plugin {
id = 'edifice'
meta {
name = 'Edifice'
url = 'https://www.edificemc.com/'
authors = ['Robert Herhold']
}
}
}
group = 'me.reherhold'
version = '1.1.1'
description = 'Create and share structures with the community'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven { url "http://repo.spongepowered.org/maven/" }
}
dependencies {
compile 'org.spongepowered:spongeapi:5.0.0'
compile 'ninja.leaping.configurate:configurate-json:3.1.1'
compile 'com.mashape.unirest:unirest-java:1.4.9'
}
shadowJar {
relocate 'org.apache', 'relocated.org.apache'
dependencies {
exclude(dependency('org.spongepowered:spongeapi:5.0.0'))
}
}
artifacts {
archives shadowJar
}