2016-08-16 22:29:10 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'groovy'
|
|
|
|
id 'maven'
|
2018-08-10 17:15:05 +00:00
|
|
|
id 'maven-publish'
|
2016-08-16 22:29:10 +00:00
|
|
|
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
|
|
|
|
|
2018-10-22 18:25:18 +00:00
|
|
|
group = 'net.fabricmc'
|
2018-05-11 20:57:42 +00:00
|
|
|
archivesBaseName = project.name
|
2018-10-22 18:25:18 +00:00
|
|
|
version = '0.0.12-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 {
|
2018-05-11 21:10:17 +00:00
|
|
|
name "Modmuss"
|
|
|
|
url 'http://maven.modmuss50.me/'
|
2016-08-21 15:11:03 +00:00
|
|
|
}
|
2016-10-07 12:17:04 +00:00
|
|
|
maven {
|
|
|
|
name = 'Mojang'
|
|
|
|
url = 'https://libraries.minecraft.net/'
|
|
|
|
}
|
2018-05-14 10:17:26 +00:00
|
|
|
maven {
|
2018-08-05 20:45:54 +00:00
|
|
|
name = 'Forge' //For ModLauncher
|
|
|
|
url = 'http://files.minecraftforge.net/maven/'
|
2018-05-14 10:17:26 +00:00
|
|
|
}
|
2018-10-22 18:46:42 +00:00
|
|
|
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'
|
2018-07-19 02:49:20 +00:00
|
|
|
shade ('weave-asm:weave:0.1.0.7'){
|
2018-05-16 13:26:12 +00:00
|
|
|
transitive = false
|
|
|
|
}
|
2018-08-07 14:56:39 +00:00
|
|
|
shade ('enigma-asm:enigma:0.12.0.33:lib'){
|
|
|
|
exclude group: 'org.ow2.asm'
|
|
|
|
}
|
2018-08-07 17:52:17 +00:00
|
|
|
shade 'OpenModLoader.tiny-remapper:tiny-remapper:0.1.0.7'
|
2018-06-18 15:16:03 +00:00
|
|
|
shade 'net.sf.jopt-simple:jopt-simple:5.0.4'
|
|
|
|
shade 'org.apache.logging.log4j:log4j-api:2.11.0'
|
|
|
|
shade 'org.apache.logging.log4j:log4j-core:2.11.0'
|
2018-10-22 18:46:42 +00:00
|
|
|
|
|
|
|
shade ('net.minecraft:launchwrapper:1.12') {
|
|
|
|
transitive = false
|
|
|
|
}
|
2018-10-22 18:53:07 +00:00
|
|
|
|
2018-10-22 18:46:42 +00:00
|
|
|
shade('org.spongepowered:mixin:0.7.11-SNAPSHOT') {
|
|
|
|
exclude module: 'launchwrapper'
|
|
|
|
exclude module: 'guava'
|
|
|
|
}
|
2017-02-09 18:21:42 +00:00
|
|
|
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 {
|
2018-05-14 11:06:57 +00:00
|
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
|
|
from (configurations.shade.collect { it.isDirectory() ? it : zipTree(it) }) {
|
2018-05-14 10:56:43 +00:00
|
|
|
exclude 'META-INF/*'
|
|
|
|
exclude 'META-INF'
|
2016-10-07 12:17:04 +00:00
|
|
|
}
|
2016-08-15 10:22:14 +00:00
|
|
|
}
|
|
|
|
|
2016-08-16 22:29:10 +00:00
|
|
|
|
|
|
|
task wrapper(type: Wrapper) {
|
2018-10-22 18:53:07 +00:00
|
|
|
gradleVersion = '4.10.2'
|
2018-05-14 10:50:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
maven(MavenPublication) {
|
2018-08-10 17:15:05 +00:00
|
|
|
groupId project.group
|
2018-05-14 10:50:02 +00:00
|
|
|
artifactId project.archivesBaseName
|
|
|
|
version project.version
|
|
|
|
|
|
|
|
from components.java
|
2018-05-14 11:06:57 +00:00
|
|
|
|
2018-05-14 10:50:02 +00:00
|
|
|
//Removes all of the dependencies from the maven pom, prevents sub projects downloading all the libs, as we use a fat jar
|
|
|
|
pom.withXml {
|
|
|
|
asNode().remove(asNode().get('dependencies'))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
url "http://mavenupload.modmuss50.me/"
|
|
|
|
if (project.hasProperty('mavenPass')) {
|
|
|
|
credentials {
|
|
|
|
username 'buildslave'
|
|
|
|
password project.getProperty('mavenPass')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-06-23 07:53:53 +00:00
|
|
|
}
|