Applied-Energistics-2-tiler.../build.gradle

125 lines
3.4 KiB
Groovy
Raw Normal View History

/*
* This file is part of Applied Energistics 2.
2015-09-29 15:47:55 +02:00
* Copyright (c) 2013 - 2015, AlgorithmX2, All rights reserved.
*
* Applied Energistics 2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Applied Energistics 2 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Applied Energistics 2. If not, see <http://www.gnu.org/licenses/lgpl>.
*/
2014-09-24 02:30:22 +02:00
buildscript {
repositories {
mavenLocal()
2015-09-29 15:47:55 +02:00
jcenter()
mavenCentral()
2014-09-24 02:30:22 +02:00
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT'
2014-09-24 02:30:22 +02:00
}
}
2016-01-01 01:46:06 +01:00
apply plugin: 'net.minecraftforge.gradle.forge'
2016-02-16 21:00:12 +01:00
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
apply from: 'gradle/scripts/dependencies.gradle'
2016-01-01 01:46:06 +01:00
apply from: 'gradle/scripts/artifacts.gradle'
apply from: 'gradle/scripts/optional.gradle'
2014-09-24 02:30:22 +02:00
2015-06-17 19:39:18 +02:00
sourceCompatibility = JavaVersion.VERSION_1_8
2016-01-01 01:46:06 +01:00
targetCompatibility = JavaVersion.VERSION_1_8
2014-09-24 02:30:22 +02:00
version = aeversion + "-" + aechannel + "-" + aebuild
group = aegroup
archivesBaseName = aebasename
2014-09-24 02:30:22 +02:00
// Add Coremod Manifest
jar {
manifest {
attributes 'FMLCorePluginContainsFMLMod': 'true'
attributes 'FMLAT': 'appeng_at.cfg'
2014-09-24 02:30:22 +02:00
}
from sourceSets.api.output
dependsOn apiClasses
// specify which files are really included, can control which APIs should be in
include "appeng/**"
include "assets/**"
include "mcmod.info"
include "pack.mcmeta"
include "META-INF/appeng_at.cfg"
2014-09-24 02:30:22 +02:00
}
minecraft {
coreMod = "appeng.coremod.AppEngCore"
version = minecraft_version + "-" + forge_version
2014-09-24 02:30:22 +02:00
replaceIn "AEConfig.java"
replaceIn "package-info.java"
2014-09-24 02:30:22 +02:00
replace "@version@", project.version
replace "@aeversion@", aeversion
replace "@aechannel@", aechannel
replace "@aebuild@", aebuild
2014-09-24 02:30:22 +02:00
// used when launching minecraft in dev env
2014-09-24 02:30:22 +02:00
runDir = "run"
2016-01-10 01:58:42 +01:00
mappings = mcp_mappings
2014-09-24 02:30:22 +02:00
}
sourceSets {
api
2016-11-06 22:22:34 +01:00
// This source set will contain third party API code that we need to compile, but which is not shipped with the jar
thirdparty {
// Third Party APIs often need access to Minecraft classes (i.e. EnumFacing), so set this up here
compileClasspath += configurations.forgeGradleMc + configurations.forgeGradleMcDeps
}
main
2014-09-24 02:30:22 +02:00
}
2016-11-06 22:22:34 +01:00
dependencies {
compile sourceSets.thirdparty.output
}
processResources
{
// this will ensure that this task is redone when the versions change.
inputs.property "version", project.version
inputs.property "mcversion", project.minecraft.version
2014-09-24 02:30:22 +02:00
// replace stuff in mcmod.info, nothing else
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
expand 'version': project.version, 'mcversion': project.minecraft.version
}
// copy everything else, thats not the mcmod.info
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
2014-09-24 02:30:22 +02:00
}
// move access transformer to META-INF
rename '(.+_at.cfg)', 'META-INF/$1'
2014-09-24 02:30:22 +02:00
}