53 lines
No EOL
1.6 KiB
Groovy
53 lines
No EOL
1.6 KiB
Groovy
buildscript {
|
|
repositories {
|
|
mavenLocal()
|
|
maven { url = 'https://files.minecraftforge.net/maven' }
|
|
jcenter()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true
|
|
}
|
|
}
|
|
|
|
apply plugin: 'net.minecraftforge.gradle'
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'idea'
|
|
|
|
// define the properties file
|
|
ext.configFile = file "build.properties"
|
|
|
|
configFile.withReader {
|
|
// read config. it shall from now on be referenced as simply config or as project.config
|
|
def prop = new Properties()
|
|
prop.load(it)
|
|
project.ext.config = new ConfigSlurper().parse prop
|
|
}
|
|
|
|
group = "com.github.glitchfiend.biomesoplenty"
|
|
archivesBaseName = "BiomesOPlenty"
|
|
|
|
// add some stuff to the version
|
|
version = "${config.minecraft_version}-${config.mod_version}.${System.getenv().BUILD_NUMBER}"
|
|
config.build_number = (System.getenv().BUILD_NUMBER) ? System.getenv().BUILD_NUMBER : ""
|
|
|
|
minecraft {
|
|
mappings channel: 'snapshot', version: config.mappings_version
|
|
|
|
accessTransformer = file('src/main/resources/META-INF/biomesoplenty_at.cfg')
|
|
|
|
runs {
|
|
client = {
|
|
workingDirectory = project.file("run").canonicalPath
|
|
source sourceSets.main
|
|
}
|
|
server = {
|
|
workingDirectory = project.file("run").canonicalPath
|
|
source sourceSets.main
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
minecraft 'net.minecraftforge.test:forge:' + config.minecraft_version + '-' + config.forge_version
|
|
} |