2022-04-29 01:57:15 +02:00
|
|
|
|
2014-04-20 04:44:06 +02:00
|
|
|
|
2013-12-29 21:41:58 +01:00
|
|
|
buildscript {
|
2022-02-19 02:15:40 +01:00
|
|
|
repositories {
|
|
|
|
maven {
|
2022-03-01 22:53:54 +01:00
|
|
|
name = "central"
|
|
|
|
url = "https://maven.thorfusion.com/artifactory/central/"
|
2022-02-19 02:15:40 +01:00
|
|
|
}
|
2022-03-01 22:53:54 +01:00
|
|
|
}
|
2021-07-02 16:03:37 +02:00
|
|
|
dependencies {
|
2022-02-19 02:15:40 +01:00
|
|
|
classpath ('com.anatawa12.forge:ForgeGradle:1.2-1.0.+') {
|
|
|
|
changing = true
|
|
|
|
}
|
2022-04-29 02:13:20 +02:00
|
|
|
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:latest.release"
|
2014-04-20 04:44:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-29 01:57:15 +02:00
|
|
|
plugins {
|
|
|
|
id 'java-library'
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'forge'
|
|
|
|
apply plugin: 'idea'
|
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: "com.jfrog.artifactory"
|
|
|
|
apply plugin: "maven-publish"
|
|
|
|
apply plugin: "maven"
|
|
|
|
|
|
|
|
defaultTasks 'fullBuild'
|
|
|
|
|
2014-06-13 11:37:08 +02:00
|
|
|
repositories {
|
|
|
|
maven {
|
2022-03-01 22:53:54 +01:00
|
|
|
name 'central'
|
|
|
|
url 'https://maven.thorfusion.com/artifactory/central/'
|
2022-02-19 02:15:40 +01:00
|
|
|
}
|
2022-03-01 22:53:54 +01:00
|
|
|
|
2021-07-02 16:03:37 +02:00
|
|
|
}
|
2022-03-01 21:01:57 +01:00
|
|
|
|
2021-07-21 22:46:06 +02:00
|
|
|
idea {
|
2015-07-19 08:57:50 +02:00
|
|
|
module {
|
|
|
|
// For some reason this is necessary for IDEA 2014 workspaces to recognize assets
|
|
|
|
inheritOutputDirs = true
|
|
|
|
}
|
2021-07-21 22:46:06 +02:00
|
|
|
}
|
2015-07-19 08:57:50 +02:00
|
|
|
|
2014-04-20 04:44:06 +02:00
|
|
|
// Define properties file
|
|
|
|
ext.configFile = file "build.properties"
|
|
|
|
|
|
|
|
configFile.withReader {
|
|
|
|
// Load config. It shall from now be referenced as simply config or project.config
|
|
|
|
def prop = new Properties()
|
|
|
|
prop.load(it)
|
|
|
|
project.ext.config = new ConfigSlurper().parse prop
|
2013-12-29 21:41:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2014-04-20 04:44:06 +02:00
|
|
|
compile "codechicken:CodeChickenLib:${config.minecraft_version}-${config.CCLIB_version}:dev"
|
|
|
|
compile "codechicken:ForgeMultipart:${config.minecraft_version}-${config.FMP_version}:dev"
|
2014-06-13 19:45:28 +02:00
|
|
|
compile "codechicken:NotEnoughItems:${config.minecraft_version}-${config.NEI_version}:dev"
|
2015-03-19 22:55:22 +01:00
|
|
|
compile "codechicken:CodeChickenCore:${config.minecraft_version}-${config.CCC_version}:dev"
|
2022-09-03 19:46:40 +02:00
|
|
|
compile "inventorytweaks:inventory-tweaks:1.7.10-1.60.0:api"
|
|
|
|
compile "net.industrial-craft:industrialcraft-2:2.2.828-experimental:api"
|
|
|
|
compile "mcp.mobius.waila:Waila:1.5.10_1.7.10:dev"
|
2013-12-29 21:41:58 +01:00
|
|
|
}
|
|
|
|
|
2022-04-30 20:07:36 +02:00
|
|
|
version = "${config.minecraft_version}-${config.mod_version}"
|
|
|
|
group= "mekanism"
|
|
|
|
archivesBaseName = "Mekanism-1.7.10-Community-Edition"
|
2014-01-04 21:47:40 +01:00
|
|
|
libsDirName = "../output"
|
|
|
|
distsDirName = "../output"
|
2021-07-21 23:11:02 +02:00
|
|
|
sourceCompatibility = '1.8'
|
|
|
|
targetCompatibility = '1.8'
|
2013-12-29 21:41:58 +01:00
|
|
|
|
|
|
|
minecraft {
|
2021-07-21 22:46:06 +02:00
|
|
|
version = config.minecraft_version + "-" + config.forge_version
|
2022-04-29 01:57:15 +02:00
|
|
|
replaceIn "mekanism/common/Mekanism.java"
|
|
|
|
replaceIn "mekanism/generators/common/MekanismGenerators.java"
|
|
|
|
replaceIn "mekanism/tools/common/MekanismTools.java"
|
|
|
|
replace "GRADLE_MODVERSION", config.mod_version
|
|
|
|
replace "GRADLE_VERSIONMOD", config.alt_version
|
2013-12-29 21:41:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
processResources
|
2021-07-21 22:46:06 +02:00
|
|
|
{
|
|
|
|
// copy everything else, thats not the mcmod.info
|
|
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
|
|
exclude 'mcmod.info'
|
|
|
|
exclude '**/*.blend*'
|
|
|
|
}
|
|
|
|
}
|
2013-12-29 21:41:58 +01:00
|
|
|
|
|
|
|
task coreJar(type: Jar) {
|
2022-04-30 20:07:36 +02:00
|
|
|
classifier = 'Core'
|
2014-01-05 06:40:12 +01:00
|
|
|
manifest {
|
|
|
|
attributes 'FMLCorePlugin': 'mekanism.common.asm.LoadingHook'
|
2014-01-05 06:48:58 +01:00
|
|
|
attributes 'FMLCorePluginContainsFMLMod': 'true'
|
2014-01-05 06:40:12 +01:00
|
|
|
}
|
|
|
|
|
2014-07-07 16:43:53 +02:00
|
|
|
from('etc/core') {
|
|
|
|
include '*.info'
|
2014-09-14 01:37:19 +02:00
|
|
|
expand 'version': config.mod_version, 'mc_version': config.minecraft_version, 'fmp_version': config.FMP_version
|
2014-07-07 16:43:53 +02:00
|
|
|
}
|
|
|
|
|
2014-09-14 01:37:19 +02:00
|
|
|
from zipTree(jar.outputs.getFiles().getSingleFile()).matching {
|
2014-07-14 21:41:13 +02:00
|
|
|
exclude 'mekanism/tools/**', 'mekanism/generators/**', 'mcmod.info'
|
2013-12-29 21:41:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-04 00:50:11 +02:00
|
|
|
task alltJar(type: Jar) {
|
2022-04-30 20:07:36 +02:00
|
|
|
classifier = 'ALL'
|
2020-10-04 00:50:11 +02:00
|
|
|
manifest {
|
|
|
|
attributes 'FMLCorePlugin': 'mekanism.common.asm.LoadingHook'
|
|
|
|
attributes 'FMLCorePluginContainsFMLMod': 'true'
|
|
|
|
}
|
2021-09-27 17:20:10 +02:00
|
|
|
from('etc/all') {
|
2020-10-04 00:50:11 +02:00
|
|
|
include '*.info'
|
|
|
|
expand 'version': config.mod_version, 'mc_version': config.minecraft_version, 'fmp_version': config.FMP_version
|
|
|
|
}
|
|
|
|
from zipTree(jar.outputs.getFiles().getSingleFile()).matching {
|
|
|
|
exclude 'mcmod.info'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-29 21:41:58 +01:00
|
|
|
task toolsJar(type: Jar) {
|
2022-04-30 20:07:36 +02:00
|
|
|
classifier = 'Tools'
|
2014-07-07 16:43:53 +02:00
|
|
|
from('etc/tools') {
|
|
|
|
include '*.info'
|
|
|
|
expand 'version':config.mod_version,'mc_version':config.minecraft_version,'fmp_version':config.FMP_version
|
|
|
|
}
|
|
|
|
|
2014-09-14 01:37:19 +02:00
|
|
|
from zipTree(jar.outputs.getFiles().getSingleFile()).matching {
|
2013-12-29 21:41:58 +01:00
|
|
|
include 'mekanism/tools/**'
|
2021-12-26 04:13:22 +01:00
|
|
|
exclude 'mcmod.info'
|
2013-12-29 21:41:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task generatorsJar(type: Jar) {
|
2022-04-30 20:07:36 +02:00
|
|
|
classifier = 'Generators'
|
2014-07-07 16:43:53 +02:00
|
|
|
from('etc/generators') {
|
|
|
|
include '*.info'
|
|
|
|
expand 'version':config.mod_version,'mc_version':config.minecraft_version,'fmp_version':config.FMP_version
|
|
|
|
}
|
|
|
|
|
2014-09-14 01:37:19 +02:00
|
|
|
from zipTree(jar.outputs.getFiles().getSingleFile()).matching {
|
2013-12-29 21:41:58 +01:00
|
|
|
include 'mekanism/generators/**'
|
2021-12-26 04:13:22 +01:00
|
|
|
exclude 'mcmod.info'
|
2013-12-29 21:41:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-07 16:43:53 +02:00
|
|
|
coreJar.dependsOn('reobf')
|
|
|
|
toolsJar.dependsOn('reobf')
|
|
|
|
generatorsJar.dependsOn('reobf')
|
2020-10-04 00:50:11 +02:00
|
|
|
alltJar.dependsOn('reobf')
|
|
|
|
|
2014-07-07 16:43:53 +02:00
|
|
|
|
2014-01-04 21:47:40 +01:00
|
|
|
task MDKZip(type: Zip) {
|
2022-04-30 20:07:36 +02:00
|
|
|
classifier = 'MDK'
|
2014-04-20 04:44:06 +02:00
|
|
|
from sourceSets.main.java.srcDirs
|
2014-01-04 21:47:40 +01:00
|
|
|
include 'mekanism/api/**'
|
|
|
|
}
|
|
|
|
|
2022-09-04 12:40:19 +02:00
|
|
|
task apiJar(type: Jar) {
|
|
|
|
classifier = 'API'
|
|
|
|
dependsOn processResources
|
|
|
|
from sourceSets.main.java.srcDirs
|
|
|
|
from sourceSets.main.output
|
|
|
|
include 'mekanism/api/**'
|
|
|
|
}
|
|
|
|
|
2014-01-05 01:31:37 +01:00
|
|
|
task fullBuild(type: Delete) {
|
2014-09-14 01:37:19 +02:00
|
|
|
delete jar
|
2014-01-05 01:31:37 +01:00
|
|
|
}
|
2015-03-19 22:55:22 +01:00
|
|
|
|
2022-09-04 12:40:19 +02:00
|
|
|
fullBuild.dependsOn('toolsJar', 'coreJar', 'generatorsJar', 'MDKZip', 'alltJar', 'apiJar')
|
2020-10-04 00:50:11 +02:00
|
|
|
|
2022-04-29 02:13:20 +02:00
|
|
|
artifactory {
|
|
|
|
contextUrl = System.getenv("MAVEN_URL")
|
|
|
|
publish {
|
|
|
|
repository {
|
|
|
|
repoKey = 'thorfusion'
|
|
|
|
username = System.getenv("MAVEN_USERNAME")
|
|
|
|
password = System.getenv("MAVEN_PASSWORD")
|
|
|
|
maven = true
|
|
|
|
}
|
|
|
|
defaults {
|
|
|
|
publications('mavenJava')
|
|
|
|
}
|
|
|
|
publishBuildInfo = false
|
|
|
|
publishArtifacts = true
|
|
|
|
publishPom = true
|
|
|
|
}
|
|
|
|
resolve {
|
|
|
|
repository {
|
|
|
|
repoKey = 'central'
|
|
|
|
username = System.getenv("MAVEN_USERNAME")
|
|
|
|
password = System.getenv("MAVEN_PASSWORD")
|
|
|
|
maven = true
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
mavenJava(MavenPublication) {
|
|
|
|
artifactId = rootProject.name
|
|
|
|
groupId = project.group
|
|
|
|
version = project.version
|
2022-09-04 12:40:19 +02:00
|
|
|
artifacts = [toolsJar, coreJar, generatorsJar, MDKZip, alltJar, apiJar]
|
2022-05-01 14:43:46 +02:00
|
|
|
components.java.withVariantsFromConfiguration(configurations.runtimeElements) {
|
|
|
|
skip()
|
|
|
|
}
|
2022-04-29 02:13:20 +02:00
|
|
|
pom {
|
2022-04-30 20:55:52 +02:00
|
|
|
name.set("Mekanism 1.7.10 Community Edition")
|
2022-04-29 02:13:20 +02:00
|
|
|
description.set('Mekanism is a Minecraft add-on featuring high-tech machinery that can be used to create powerful tools, armor, and weapons.')
|
|
|
|
url.set('https://aidancbrady.com/mekanism/')
|
|
|
|
issueManagement {
|
|
|
|
system.set('github')
|
|
|
|
url.set('https://github.com/Thorfusion/Mekanism-1.7.10-Community-Edition/issues')
|
|
|
|
}
|
|
|
|
licenses {
|
|
|
|
license {
|
|
|
|
name.set('CC BY-NC-SA 4.0')
|
|
|
|
distribution.set('repo')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|