buildscript { repositories { jcenter() maven { url = "http://files.minecraftforge.net/maven" } mavenCentral() maven { url 'https://plugins.gradle.org/m2/' } } dependencies { classpath "net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT" classpath "com.github.jengelman.gradle.plugins:shadow:2.0.0" classpath "gradle.plugin.com.matthewprenger:CurseGradle:1.0.10" } } apply plugin: 'net.minecraftforge.gradle.forge' apply plugin: "com.github.johnrengelman.shadow" apply plugin: 'com.matthewprenger.cursegradle' version = project.mc_version + "-" + project.mod_version archivesBaseName = project.mod_name sourceCompatibility = targetCompatibility = '1.8' dependencies { compile project(':core') compile group: "net.shadowfacts", name: "Forgelin", version: project.forgelin_version } shadowJar { classifier '' relocate "blue.endless", "matterlink.repack.blue.endless" dependencies { include project(":core") include project(":api") include project(":Jankson") } exclude 'dummyThing' } import net.minecraftforge.gradle.user.TaskSourceCopy // Mad hacks to make source replacements work for Kotlin // source: https://github.com/PaleoCrafter/VanillaImmersion/blob/ee82ecafb76659cf7d7822a722c8f63f43f41d01/build.gradle#L119 for (set in sourceSets) { def taskName = "source${set.name.capitalize()}Kotlin" def dir = new File(project.getBuildDir(), "sources/${set.name}/kotlin") task(taskName, type: TaskSourceCopy) { source = set.getKotlin() output = dir } def compileTask = tasks[set.getCompileTaskName("kotlin")] compileTask.source = dir compileTask.dependsOn taskName def dirPath = dir.toPath() compileKotlin.include { return it.file.toPath().startsWith(dirPath) } } sourceJar.from sourceSets.main.kotlin minecraft { version = project.mc_version + "-" + project.forge_version runDir = "run" mappings = project.mcp_mappings replaceIn 'Constants.kt' replace '@MODVERSION@', project.mod_version replace '@MCVERSION@', project.mc_version replace '@FORGELIN-VERSION@', project.forgelin_version replace '@FORGE-VERSION@', project.forge_version } processResources { // this will ensure that this task is redone when the versions change. inputs.property "version", project.mod_version inputs.property "mcversion", project.minecraft.version // replace stuff in mcmod.info, nothing else from(project(":core").sourceSets.main.resources.srcDirs) { include 'mcmod.info' // replace version and mcversion expand 'version': project.mod_version, 'mcversion': project.minecraft.version } // copy everything else except the mcmod.info from(project(":core").sourceSets.main.resources.srcDirs) { exclude 'mcmod.info' } } sourceJar { classifier 'sources' // copy all the minecraftforge specific classes from sourceSets.main.allSource // copy everything else except the mcmod.info from(project(":core").sourceSets.main.allSource) { exclude 'mcmod.info' } } reobf { shadowJar { mappingType = 'SEARGE' } } tasks.shadowJar.finalizedBy reobfShadowJar curseforge { if (project.hasProperty('CURSEFORGE_API_TOKEN') && project.hasProperty('release')) { apiKey = CURSEFORGE_API_TOKEN } project { id = project.curse_id releaseType = project.curse_release_type if (project.hasProperty('changelog_file')) { println("changelog = $changelog_file") changelogType = "markdown" changelog = file(changelog_file) } relations { requiredLibrary 'shadowfacts-forgelin' } mainArtifact(shadowJar) { displayName = "MatterLink $version" } } }