2015-08-21 19:45:39 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2022-07-22 02:47:58 +00:00
|
|
|
jcenter()
|
2023-07-13 17:29:23 +00:00
|
|
|
maven {
|
|
|
|
name = "forge"
|
|
|
|
url = "https://maven.minecraftforge.net"
|
|
|
|
}
|
2022-07-22 02:47:58 +00:00
|
|
|
maven {
|
|
|
|
name = "gt"
|
|
|
|
url = "https://gregtech.overminddl1.com/"
|
|
|
|
}
|
2015-08-21 19:45:39 +00:00
|
|
|
maven {
|
|
|
|
name = "sonatype"
|
|
|
|
url = "https://oss.sonatype.org/content/repositories/snapshots/"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
2023-07-13 17:29:23 +00:00
|
|
|
classpath ('com.anatawa12.forge:ForgeGradle:1.2-1.0.+') {
|
|
|
|
changing = true
|
|
|
|
}
|
2015-08-21 19:45:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-22 02:47:58 +00:00
|
|
|
// Because Forge is too stupid to fix Deprecation Issues, and we cannot fix it on our end! (until we fork Forge)
|
|
|
|
allprojects {
|
|
|
|
tasks.withType(JavaCompile) {
|
|
|
|
options.compilerArgs << "-Xlint:deprecation"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'eclipse'
|
|
|
|
eclipse {
|
|
|
|
classpath {
|
|
|
|
downloadJavadoc = true
|
|
|
|
downloadSources = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-19 02:50:44 +00:00
|
|
|
apply plugin: 'idea'
|
2022-07-22 02:47:58 +00:00
|
|
|
idea{
|
|
|
|
module {
|
|
|
|
downloadJavadoc = true
|
|
|
|
downloadSources = true
|
|
|
|
}
|
|
|
|
}
|
2019-12-13 17:13:17 +00:00
|
|
|
|
2022-07-22 02:47:58 +00:00
|
|
|
apply plugin: 'forge'
|
2015-08-21 19:45:39 +00:00
|
|
|
|
2015-10-19 02:50:44 +00:00
|
|
|
file "build.properties" withReader {
|
|
|
|
def prop = new Properties()
|
|
|
|
prop.load(it)
|
|
|
|
ext.config = new ConfigSlurper().parse prop
|
|
|
|
}
|
|
|
|
|
|
|
|
version = "${config.gt.version}"
|
|
|
|
group= "gregtech"
|
2015-08-21 19:45:39 +00:00
|
|
|
archivesBaseName = "gregtech"
|
|
|
|
|
2016-08-19 11:15:05 +00:00
|
|
|
sourceCompatibility = 1.7
|
|
|
|
targetCompatibility = 1.7
|
2022-07-22 02:47:58 +00:00
|
|
|
compileJava.options.bootClasspath = org.gradle.internal.jvm.Jvm.current().getJre().getHomeDir().toString() +"/lib/rt.jar"
|
|
|
|
compileJava {
|
|
|
|
options.encoding = "UTF-8"
|
|
|
|
}
|
2016-08-19 11:15:05 +00:00
|
|
|
|
2015-08-21 19:45:39 +00:00
|
|
|
minecraft {
|
2015-10-19 02:50:44 +00:00
|
|
|
version = "${config.minecraft.version}-${config.forge.version}"
|
2015-08-21 19:45:39 +00:00
|
|
|
runDir = "eclipse"
|
|
|
|
}
|
|
|
|
|
2022-07-22 02:47:58 +00:00
|
|
|
idea { module { inheritOutputDirs = true } }
|
|
|
|
|
2015-10-19 02:50:44 +00:00
|
|
|
configurations {
|
|
|
|
provided
|
|
|
|
embedded
|
|
|
|
compile.extendsFrom provided, embedded
|
|
|
|
}
|
2015-08-21 19:45:39 +00:00
|
|
|
|
2015-10-19 02:50:44 +00:00
|
|
|
repositories {
|
2022-07-22 02:47:58 +00:00
|
|
|
maven {
|
|
|
|
name = "gt"
|
2023-07-13 17:29:23 +00:00
|
|
|
url = "https://gregtech.overminddl1.com/"
|
2022-07-22 02:47:58 +00:00
|
|
|
}
|
|
|
|
maven {
|
|
|
|
name = "ic2"
|
2023-07-13 17:29:23 +00:00
|
|
|
url = "https://maven.ic2.player.to/"
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
name = "k4u"
|
|
|
|
url = "https://maven.k-4u.nl/"
|
2022-07-22 02:47:58 +00:00
|
|
|
}
|
2023-07-13 17:29:23 +00:00
|
|
|
maven {
|
|
|
|
name = "local"
|
|
|
|
url = "file:///C:/Users/michael/Documents/GT5-Unofficial/maven/"
|
|
|
|
}
|
2015-10-19 02:50:44 +00:00
|
|
|
}
|
2015-08-21 19:45:39 +00:00
|
|
|
|
2015-10-19 02:50:44 +00:00
|
|
|
dependencies {
|
2022-07-22 02:47:58 +00:00
|
|
|
// compile fileTree(dir: 'libs', include: '*.jar')
|
|
|
|
|
|
|
|
provided "net.industrial-craft:industrialcraft-2:${config.ic2.version}:dev"
|
2019-12-13 17:13:17 +00:00
|
|
|
|
2023-07-13 17:29:23 +00:00
|
|
|
compileOnly "mcp.mobius.waila:Waila:1.5.11-RC2-NONEI_1.7.10"
|
|
|
|
//compile "codechicken:CodeChickenLib:1.7.10-1.1.3.140:dev"
|
|
|
|
//compile "codechicken:CodeChickenCore:1.7.10-1.0.7.47:dev"
|
|
|
|
//compile "codechicken:NotEnoughItems:1.7.10-1.0.5.120:dev"
|
2019-12-13 17:13:17 +00:00
|
|
|
|
|
|
|
compileOnly "com.enderio.core:EnderCore:1.7.10-0.2.0.39_beta:dev"
|
|
|
|
compileOnly "com.enderio:EnderIO:1.7.10-2.3.0.430_beta:dev"
|
|
|
|
|
|
|
|
compileOnly "cofh:CoFHCore:1.7.10R3.0.4:dev"
|
|
|
|
compileOnly "cofh:CoFHLib:1.7.10R3.0.3:dev"
|
|
|
|
compileOnly "com.mod-buildcraft:buildcraft:7.1.23:dev"
|
|
|
|
compileOnly "net.sengir.forestry:forestry_1.7.10:4.2.16.64:dev"
|
|
|
|
compileOnly "mods.railcraft:Railcraft_1.7.10:9.12.3.0:dev"
|
|
|
|
|
|
|
|
compileOnly "micdoodle8.mods:GalacticraftCore:1.7-3.0.12.504:Dev"
|
|
|
|
compileOnly "micdoodle8.mods:MicdoodleCore:1.7-3.0.12.504:Dev"
|
|
|
|
|
2023-07-13 17:29:23 +00:00
|
|
|
compileOnly "thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev"
|
2019-12-13 17:13:17 +00:00
|
|
|
compileOnly "com.azanor.baubles:Baubles:1.7.10-1.0.1.10:deobf"
|
|
|
|
compileOnly "appeng:appliedenergistics2:rv3-beta-6:dev"
|
|
|
|
compileOnly "applecore:AppleCore:1.7.10-3.1.1:deobf"
|
|
|
|
compileOnly "com.shedar.IC2NuclearControl:IC2NuclearControl:2.4.3a:dev"
|
2023-07-13 17:29:23 +00:00
|
|
|
|
|
|
|
compileOnly "pneumaticCraft:PneumaticCraft-1.7.10:1.12.7-152:userdev"
|
2022-07-22 02:47:58 +00:00
|
|
|
|
2015-08-21 19:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
processResources
|
|
|
|
{
|
|
|
|
// this will ensure that this task is redone when the versions change.
|
|
|
|
inputs.property "version", project.version
|
|
|
|
inputs.property "mcversion", project.minecraft.version
|
|
|
|
|
2022-07-22 02:47:58 +00:00
|
|
|
// replace stuff in mcmod.info, nothing else
|
|
|
|
from(sourceSets.main.resources.srcDirs) {
|
2015-08-21 19:45:39 +00:00
|
|
|
include 'mcmod.info'
|
2022-07-22 02:47:58 +00:00
|
|
|
|
|
|
|
// replace version and mcversion
|
|
|
|
expand 'version':project.version, 'mcversion':project.minecraft.version
|
2015-08-21 19:45:39 +00:00
|
|
|
}
|
2022-07-22 02:47:58 +00:00
|
|
|
|
|
|
|
// copy everything else, thats not the mcmod.info
|
|
|
|
from(sourceSets.main.resources.srcDirs) {
|
2022-07-22 01:17:48 +00:00
|
|
|
exclude 'mcmod.info'
|
2022-07-22 02:47:58 +00:00
|
|
|
}
|
|
|
|
exclude '**/Thumbs.db'
|
|
|
|
}
|
2022-07-22 01:17:48 +00:00
|
|
|
|
2022-07-22 02:47:58 +00:00
|
|
|
task sourceJar(type: Jar) {
|
|
|
|
from sourceSets.main.allSource
|
|
|
|
classifier = 'sources'
|
|
|
|
}
|
|
|
|
|
|
|
|
task devJar(type: Jar) {
|
|
|
|
from sourceSets.main.output
|
|
|
|
classifier = 'dev'
|
|
|
|
manifest {
|
|
|
|
//attributes 'FMLCorePlugin': 'WhateverLoaderClass'
|
|
|
|
//attributes 'FMLCorePluginContainsFMLMod': 'true'
|
2015-10-19 02:50:44 +00:00
|
|
|
}
|
2015-10-03 13:23:52 +00:00
|
|
|
}
|
2022-07-22 02:47:58 +00:00
|
|
|
|
|
|
|
artifacts {
|
|
|
|
archives devJar
|
|
|
|
}
|