-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
70 lines (62 loc) · 1.98 KB
/
build.gradle
File metadata and controls
70 lines (62 loc) · 1.98 KB
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
69
70
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'application'
version = '1.0'
def appName = "Quiddity Loader"
repositories {
mavenLocal()
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
}
mavenCentral()
maven {
name = "mojang"
url = "https://libraries.minecraft.net/"
}
}
configurations {
bundledLib
compile.extendsFrom bundledLib
}
dependencies {
compile 'net.sf.trove4j:trove4j:3.0.3' // because its awesome.
compile 'com.github.jponge:lzma-java:1.3' // replaces the LZMA binary
compile 'com.nothome:javaxdelta:2.0.1' // GDIFF implementation for BinPatches
compile 'com.google.code.gson:gson:2.2.4' // Used instead of Argo for buuilding changelog.
compile 'com.github.tony19:named-regexp:0.2.3' // 1.7 Named regexp features
compile 'io.netty:netty-all:4.0.26.Final'
bundledLib 'org.apache.commons:commons-lang3:3.3.2'
bundledLib 'commons-io:commons-io:2.4'
compile 'com.ibm.icu:icu4j:54.1.1'
compile 'org.lwjgl.lwjgl:lwjgl_util:2.9.3'
compile 'net.java.jinput:jinput:2.0.6'
compile 'java3d:vecmath:1.3.1'
compile 'com.paulscode:soundsystem:20120107'
compile 'com.paulscode:librarylwjglopenal:20100824'
compile 'com.paulscode:libraryjavasound:20101123'
compile 'com.paulscode:codecwav:20101023'
compile 'com.paulscode:codecjorbis:20101023'
compile 'com.mojang:authlib:1.5.16'
compile 'net.minecraft:launchwrapper:1.11'
bundledLib 'org.javassist:javassist:3.19.0-GA'
}
build {
sourceCompatibility = 1.6
mainClassName = "mods.quiddity.Loader"
applicationDefaultJvmArgs = ["-Xincgc", "-Xmx1024M", "-Xms1024M"]
}
jar {
from configurations.bundledLib.collect {
it.isDirectory() ? it : zipTree(it)
}
manifest {
attributes 'Implementation-Title': 'Quiddy Loader', 'Implementation-Version': version
attributes 'Main-Class': 'mods.quiddity.Loader'
}
}
idea {
module {
name = appName
}
}