forked from SpongePowered/SpongeAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
43 lines (33 loc) · 1.04 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'nl.javadude.gradle.plugins:license-gradle-plugin:0.11.0'
}
}
version = '2.1-SNAPSHOT'
ext.api = project
apply from: 'gradle/java.gradle'
// Project dependencies
dependencies {
compile 'org.slf4j:slf4j-api:1.7.12'
// Dependencies provided by Minecraft
compile 'com.google.guava:guava:17.0'
compile 'com.google.code.gson:gson:2.2.4'
compile 'org.apache.commons:commons-lang3:3.3.2'
compile 'com.google.code.findbugs:jsr305:1.3.9'
compile 'com.google.inject:guice:4.0'
compile 'ninja.leaping.configurate:configurate-hocon:2.0'
compile 'ninja.leaping.configurate:configurate-gson:2.0'
compile 'ninja.leaping.configurate:configurate-yaml:2.0'
compile 'com.flowpowered:flow-math:1.0.1'
compile 'com.flowpowered:flow-noise:1.0.1-SNAPSHOT'
compile 'org.ow2.asm:asm:5.0.3'
}
// JAR manifest configuration
jar {
manifest {
attributes('Main-Class': 'org.spongepowered.api.util.InformativeMain')
}
}