fabric-loom/build.gradle

110 lines
2.2 KiB
Groovy
Raw Normal View History

plugins {
id 'java'
id 'maven-publish'
id 'java-gradle-plugin'
id 'idea'
id 'eclipse'
2016-08-15 10:22:14 +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'
// Remove the gradleApi so it isn't merged into the jar file.
configurations.compile.dependencies.remove dependencies.gradleApi()
2016-08-15 10:22:14 +00:00
repositories {
mavenCentral()
2016-08-21 15:11:03 +00:00
maven {
name = "Modmuss"
url = 'http://maven.modmuss50.me/'
2016-08-21 15:11:03 +00:00
}
maven {
name = 'Mojang'
url = 'https://libraries.minecraft.net/'
}
maven {
name = 'Forge' //For ModLauncher
url = 'http://files.minecraftforge.net/maven/'
}
maven {
name = 'SpongePowered'
url = 'http://repo.spongepowered.org/maven'
}
2016-08-15 10:22:14 +00:00
}
configurations {
deployerJars
shade
compile.extendsFrom shade
2016-08-15 10:22:14 +00:00
}
dependencies {
implementation gradleApi()
2018-10-22 18:53:07 +00:00
shade('commons-io:commons-io:2.6')
shade('org.zeroturnaround:zt-zip:1.13')
shade('com.google.code.gson:gson:2.8.5')
shade('com.google.guava:guava:27.0-jre')
shade('net.fabricmc:stitch:0.1.0.+') {
transitive = false
}
shade('net.fabricmc:tiny-remapper:0.1.0.15')
2016-08-15 10:22:14 +00:00
shade('org.spongepowered:mixin:0.7.11-SNAPSHOT') {
exclude module: 'launchwrapper'
exclude module: 'guava'
}
2016-08-15 10:22:14 +00:00
}
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-08-15 10:22:14 +00:00
}
2018-10-27 14:14:05 +00:00
apply from: 'https://github.com/FabricMC/fabric-docs/raw/master/gradle/license.gradle'
task wrapper(type: Wrapper) {
gradleVersion = '4.10.2'
}
gradlePlugin {
plugins {
register("fabricLoom") {
id = "fabric-loom"
implementationClass = "net.fabricmc.loom.LoomGradlePlugin"
}
}
2018-05-14 10:50:02 +00:00
}
publishing {
publications {
pluginMaven(MavenPublication) { publication ->
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
//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')
}
}
}
}
}