2016-08-16 22:29:10 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'groovy'
|
|
|
|
id 'maven'
|
|
|
|
|
|
|
|
id 'idea'
|
|
|
|
id 'eclipse'
|
2016-08-15 10:22:14 +00:00
|
|
|
}
|
|
|
|
|
2016-08-16 22:29:10 +00:00
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
|
|
|
|
2016-09-22 19:33:47 +00:00
|
|
|
apply from: 'https://github.com/FabricMC/fabric-docs/raw/master/gradle/maven.gradle'
|
|
|
|
apply from: 'https://github.com/FabricMC/fabric-docs/raw/master/gradle/license.gradle'
|
|
|
|
|
2016-08-16 22:40:57 +00:00
|
|
|
group = 'net.fabricmc'
|
2016-08-16 22:29:10 +00:00
|
|
|
archivesBaseName = project.name.toLowerCase()
|
2017-03-31 11:27:55 +00:00
|
|
|
version = '0.0.7-SNAPSHOT'
|
2016-08-16 22:29:10 +00:00
|
|
|
|
2016-08-15 10:22:14 +00:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2016-08-15 18:04:08 +00:00
|
|
|
maven {
|
2016-08-16 22:29:10 +00:00
|
|
|
name = 'fabric'
|
|
|
|
url = 'http://maven.fabricmc.net/'
|
2016-08-15 10:22:14 +00:00
|
|
|
}
|
2016-08-21 15:11:03 +00:00
|
|
|
maven {
|
|
|
|
name "RX14 Repository"
|
|
|
|
url 'http://mvn.rx14.co.uk/local/'
|
|
|
|
}
|
2016-10-07 12:17:04 +00:00
|
|
|
maven {
|
|
|
|
name = 'Mojang'
|
|
|
|
url = 'https://libraries.minecraft.net/'
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
name = 'SpongePowered'
|
|
|
|
url = 'http://repo.spongepowered.org/maven'
|
|
|
|
}
|
2016-08-15 10:22:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
deployerJars
|
|
|
|
shade
|
|
|
|
compile.extendsFrom shade
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile gradleApi()
|
2016-08-16 22:29:10 +00:00
|
|
|
|
2016-09-22 19:33:47 +00:00
|
|
|
shade 'org.zeroturnaround:zt-zip:1.9'
|
|
|
|
shade 'org.slf4j:slf4j-api:1.7.21'
|
|
|
|
shade 'org.slf4j:slf4j-simple:1.7.21'
|
|
|
|
shade 'com.google.code.gson:gson:2.6.2'
|
|
|
|
shade 'commons-io:commons-io:1.4'
|
|
|
|
shade 'com.google.guava:guava:19.0'
|
2017-05-10 20:51:46 +00:00
|
|
|
shade 'net.fabricmc:weave:0.1.0.+'
|
2017-05-10 20:45:11 +00:00
|
|
|
shade 'cuchaz:enigma:0.11.0.+:lib'
|
2016-10-12 09:44:31 +00:00
|
|
|
shade 'net.fabricmc:tiny-remapper:+'
|
2016-10-07 12:17:04 +00:00
|
|
|
|
2017-02-09 18:21:42 +00:00
|
|
|
//Always fun when your dep needs the tool to build, but the tool needs the dep.
|
|
|
|
//compile 'net.fabricmc:fabric-base:16w38a-0.0.4-SNAPSHOT'
|
|
|
|
|
|
|
|
shade('org.spongepowered:mixin:0.6-SNAPSHOT') {
|
|
|
|
exclude module: 'launchwrapper'
|
|
|
|
exclude module: 'guava'
|
|
|
|
}
|
|
|
|
shade 'org.apache.commons:commons-lang3:3.5'
|
|
|
|
|
2016-08-15 10:22:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.compileClasspath += configurations.shade;
|
|
|
|
main.runtimeClasspath += configurations.shade;
|
|
|
|
test.compileClasspath += configurations.shade;
|
|
|
|
test.runtimeClasspath += configurations.shade;
|
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
2016-10-07 12:17:04 +00:00
|
|
|
from {
|
|
|
|
configurations.shade.collect { it.isDirectory() ? it : zipTree(it) }
|
|
|
|
}
|
2016-08-15 10:22:14 +00:00
|
|
|
}
|
|
|
|
|
2016-08-16 22:29:10 +00:00
|
|
|
|
|
|
|
task wrapper(type: Wrapper) {
|
2016-09-22 19:33:47 +00:00
|
|
|
gradleVersion = '3.1'
|
2016-08-16 22:29:10 +00:00
|
|
|
}
|