buildcraft/build.gradle

242 lines
6.7 KiB
Groovy
Raw Permalink Normal View History

2014-02-17 08:24:19 +01:00
buildscript {
repositories {
mavenCentral()
maven {
name = "forge"
2021-11-27 14:02:34 +01:00
url = "https://maven.minecraftforge.net/"
2021-11-27 08:26:37 +01:00
}
2014-02-17 08:24:19 +01:00
maven {
2021-11-27 14:02:34 +01:00
name = "gt"
url = "https://gregtech.overminddl1.com/"
2014-02-17 08:24:19 +01:00
}
2021-11-27 08:26:37 +01:00
maven {
url = "https://jitpack.io"
}
maven {
url = "https://plugins.gradle.org/m2/"
}
2014-02-17 08:24:19 +01:00
}
dependencies {
classpath 'com.github.GTNewHorizons:ForgeGradle:1.2.7'
2014-02-17 08:24:19 +01:00
}
}
apply plugin: 'forge' // adds the forge dependency
apply plugin: 'maven' // for uploading to a maven repo
2014-05-04 06:06:32 +02:00
apply plugin: 'checkstyle'
2014-02-17 08:24:19 +01:00
2022-10-28 10:56:43 +02:00
version = "7.1.25"
2014-02-17 08:24:19 +01:00
group= "com.mod-buildcraft"
archivesBaseName = "buildcraft" // the name that all artifacts will use as a base. artifacts names follow this pattern: [baseName]-[appendix]-[version]-[classifier].[extension]
ext.mcModInfo = new groovy.json.JsonSlurper().parse(file("buildcraft_resources/mcmod.info"))
ext.priv = parseConfig(file('private.properties'))
repositories {
maven {
name 'Overmind Forge repo mirror'
url 'https://gregtech.overminddl1.com/'
}
}
2014-02-17 08:24:19 +01:00
minecraft {
2016-06-28 21:50:02 +02:00
version = "1.7.10-10.13.4.1614-1.7.10" // McVersion-ForgeVersion this variable is later changed to contain only the MC version, while the apiVersion variable is used for the forge version. Yeah its stupid, and will be changed eentually.
2014-02-17 08:24:19 +01:00
runDir = "run" // the directory for ForgeGradle to run Minecraft in
2014-02-17 08:24:19 +01:00
// replacing stuff in the source
replace '@VERSION@', project.version
replace '@MC_VERSION@', version
}
// configure the source folders
sourceSets {
main {
java {
srcDir 'common'
2014-02-17 08:24:19 +01:00
// exclude 'some exclusion'
// include 'some inclusion'
}
resources {
srcDir 'buildcraft_resources'
def l10n = file('../BuildCraft-Localization')
if(l10n.exists())
srcDir l10n
exclude '**/.md' // exclude readme from localization repo
2014-02-17 08:24:19 +01:00
// exclude 'some exclusion'
// include 'some inclusion'
}
}
api {
java {
srcDir 'api'
}
}
2014-02-17 08:24:19 +01:00
}
// Obfuscated Jar location
ext.jarFile = zipTree(jar.archivePath)
// Add API dir to the IDEA module
idea.module.sourceDirs += sourceSets.api.java.srcDirs
2014-02-17 08:24:19 +01:00
processResources
{
// replace stuff in mcmod.info, nothing else
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
// replace version and mcversion
// ${version} and ${mcversion} are the exact strings being replaced
expand 'version':project.version, 'mcversion':project.minecraft.version
2014-02-17 08:24:19 +01:00
}
// copy everything else, that's not the mcmod.info
2014-02-17 08:24:19 +01:00
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
}
}
// --------------------
// extra jar section
// -------------------
def createMCModInfo(def id, def taskName)
{
File temp = new File("build/processing/" + taskName + "/mcmod.info")
temp.parentFile.mkdirs()
if (temp.exists())
temp.delete()
temp.createNewFile()
temp.write(groovy.json.JsonOutput.toJson([ext.mcModInfo[id]]))
temp.deleteOnExit()
return temp
}
def parseConfig(File config) {
if (!config.exists())
return null;
config.withReader {
def prop = new Properties()
prop.load(it)
return (new ConfigSlurper().parse(prop))
}
}
2014-02-17 08:24:19 +01:00
// add a source jar
task sourceJar(type: Jar) {
from sourceSets.main.allSource
from sourceSets.api.allSource
2014-02-17 08:24:19 +01:00
classifier = 'sources'
}
// add api classes to javadoc
2021-11-27 08:26:37 +01:00
// javadoc {
// source += sourceSets.api.allSource
// }
2014-02-17 08:24:19 +01:00
// add a javadoc jar
2021-11-27 08:26:37 +01:00
// task javadocJar(type: Jar, dependsOn: javadoc) {
// classifier = 'javadoc'
// from 'build/docs/javadoc'
// }
2014-02-17 08:24:19 +01:00
// because the normal output has been made to be obfuscated
task deobfJar(type: Jar) {
from sourceSets.main.output
from sourceSets.api.output
2014-02-17 08:24:19 +01:00
classifier = 'dev'
}
task apiJar(type: Jar) {
from sourceSets.api.output
classifier = 'api'
}
task coreJar(type: Jar, dependsOn: reobf) {
destinationDir = file("modules")
classifier = 'core'
from(createMCModInfo(0, name).parentFile)
from(project.ext.jarFile) {
includes.addAll(["assets/buildcraft/**", "assets/buildcraftcore/**", "buildcraft/BuildCraftCore**", "buildcraft/BuildCraftMod**", "buildcraft/core/**", "buildcraft/api/**", "cofh/**", "changelog/**", "LICENSE**", "versions.txt"])
}
}
task buildersJar(type: Jar, dependsOn: reobf) {
destinationDir = file("modules")
classifier = 'builders'
from(createMCModInfo(1, name).parentFile)
from(project.ext.jarFile) {
includes.addAll(["assets/buildcraftbuilders/**", "buildcraft/builders/**", "buildcraft/BuildCraftBuilders**", "LICENSE"])
}
}
task energyJar(type: Jar, dependsOn: reobf) {
destinationDir = file("modules")
classifier = 'energy'
from(createMCModInfo(2, name).parentFile)
from(project.ext.jarFile) {
includes.addAll(["assets/buildcraftenergy/**", "buildcraft/energy/**", "buildcraft/BuildCraftEnergy**", "LICENSE"])
}
}
task factoryJar(type: Jar, dependsOn: reobf) {
destinationDir = file("modules")
classifier = 'factory'
from(createMCModInfo(3, name).parentFile)
from(project.ext.jarFile) {
includes.addAll(["assets/buildcraftfactory/**", "buildcraft/factory/**", "buildcraft/BuildCraftFactory**", "LICENSE"])
}
}
task siliconJar(type: Jar, dependsOn: reobf) {
destinationDir = file("modules")
classifier = 'silicon'
from(createMCModInfo(4, name).parentFile)
from(project.ext.jarFile) {
includes.addAll(["assets/buildcraftsilicon/**", "buildcraft/silicon/**", "buildcraft/BuildCraftSilicon**", "LICENSE"])
}
}
task transportJar(type: Jar, dependsOn: reobf) {
destinationDir = file("modules")
classifier = 'transport'
from(createMCModInfo(5, name).parentFile)
from(project.ext.jarFile) {
includes.addAll(["assets/buildcrafttransport/**", "buildcraft/transport/**", "buildcraft/BuildCraftTransport**", "LICENSE"])
}
}
task roboticsJar(type: Jar, dependsOn: reobf) {
destinationDir = file("modules")
classifier = 'robotics'
from(createMCModInfo(6, name).parentFile)
from(project.ext.jarFile) {
includes.addAll(["assets/buildcraftrobotics/**", "buildcraft/robotics/**", "buildcraft/BuildCraftRobotics**", "LICENSE"])
}
}
// add api classes to main package
jar {
from sourceSets.api.output
}
2014-05-04 18:16:45 +02:00
checkstyle {
2014-05-04 06:06:32 +02:00
configFile = file('guidelines/buildcraft.checkstyle')
}
2014-09-04 21:24:24 +02:00
checkstyleApi.exclude 'cofh/**'
2014-02-17 08:24:19 +01:00
// make sure all of these happen when we run build
2021-11-27 14:27:17 +01:00
build.dependsOn sourceJar, deobfJar, apiJar, coreJar, buildersJar, energyJar, factoryJar, siliconJar, roboticsJar, transportJar