202 lines
6.4 KiB
Groovy
202 lines
6.4 KiB
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
name = "ForgeFS"
|
|
url = "http://files.minecraftforge.net/maven"
|
|
}
|
|
maven {
|
|
name = "sonatype"
|
|
url = "https://oss.sonatype.org/content/repositories/snapshots/"
|
|
}
|
|
}
|
|
dependencies {
|
|
classpath 'net.minecraftforge.gradle:ForgeGradle:1.2-SNAPSHOT'
|
|
}
|
|
}
|
|
|
|
apply plugin: "fml"
|
|
|
|
repositories {
|
|
flatDir {
|
|
name "fileRepo"
|
|
dirs "repo"
|
|
}
|
|
}
|
|
|
|
// 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"
|
|
version = config.mod_version
|
|
archivesBaseName = "BiomesOPlenty"
|
|
|
|
minecraft {
|
|
version = config.minecraft_version + "-" + config.forge_version // grab latest forge
|
|
assetDir = "run/assets"
|
|
|
|
}
|
|
|
|
// add some stuff to the version
|
|
version = "${config.minecraft_version}-${config.mod_version}.${System.getenv().BUILD_NUMBER}"
|
|
|
|
jenkins {
|
|
job = 'BiomesOPlenty'
|
|
}
|
|
|
|
processResources {
|
|
// replace stuff in the files we want.
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
include '**/*.info'
|
|
include '**/*.properties'
|
|
|
|
// replaces
|
|
expand ([
|
|
'modid': project.archivesBaseName,
|
|
'mod_version': project.config.mod_version,
|
|
'minecraft_version': project.config.minecraft_version,
|
|
'build_number': project.config.build_number
|
|
])
|
|
}
|
|
|
|
// copy everything else, thats we didnt do before
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
exclude '**/*.info'
|
|
exclude '**/*.properties'
|
|
}
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
//attributes 'FMLCorePlugin': 'biomesoplenty.asm.BOPLoadingPlugin'
|
|
//attributes 'FMLCorePluginContainsFMLMod': 'true'
|
|
}
|
|
classifier = 'universal'
|
|
}
|
|
|
|
import net.minecraftforge.gradle.tasks.dev.ChangelogTask
|
|
import net.minecraftforge.gradle.common.Constants
|
|
import net.minecraftforge.gradle.delayed.*
|
|
|
|
task createChangelog(type: ChangelogTask) {
|
|
def jobName = "${System.getenv().JOB_NAME}"
|
|
def buildNumber = "${System.getenv().BUILD_NUMBER}"
|
|
|
|
setServerRoot(new DelayedString(project, 'http://ci.jenkins.minecraftforge.net/'))
|
|
setJobName(new DelayedString(project, jobName.toString()));
|
|
setAuthName(new DelayedString(project, 'console_script'));
|
|
setAuthPassword(new DelayedString(project, 'dc6d48ca20a474beeac280a9a16a926e'));
|
|
setTargetBuild({buildNumber.toString()});
|
|
setOutput(new DelayedFile(project, 'build/distributions/' + project.getName() + '-' + project.version + '-changelog.txt'));
|
|
}
|
|
|
|
tasks.build.dependsOn('createChangelog')
|
|
|
|
task sourceJar(type: Jar) {
|
|
from sourceSets.main.allJava
|
|
classifier = 'sources'
|
|
}
|
|
|
|
task apiZip(type: Zip) {
|
|
from(sourceSets.main.java)
|
|
{
|
|
include "biomesoplenty/api/*"
|
|
}
|
|
classifier = 'api'
|
|
}
|
|
|
|
task deobfJar(type: Jar) {
|
|
from sourceSets.main.output
|
|
classifier = 'deobf'
|
|
}
|
|
|
|
artifacts {
|
|
archives sourceJar
|
|
archives deobfJar
|
|
archives apiZip
|
|
}
|
|
|
|
uploadArchives {
|
|
dependsOn 'reobf'
|
|
repositories {
|
|
if (project.hasProperty("filesmaven")) {
|
|
logger.info('Publishing to files server')
|
|
|
|
mavenDeployer {
|
|
configuration = configurations.deployJars
|
|
|
|
repository(url: project.filesmaven.url) {
|
|
authentication(userName: project.filesmaven.username, privateKey: project.filesmaven.key)
|
|
}
|
|
|
|
pom {
|
|
groupId = project.group
|
|
version = project.version
|
|
artifactId = project.archivesBaseName
|
|
project {
|
|
name project.archivesBaseName
|
|
packaging 'jar'
|
|
description 'Biomes O Plenty'
|
|
url 'https://github.com/Glitchfiend/BiomesOPlenty'
|
|
|
|
scm {
|
|
url 'https://github.com/Glitchfiend/BiomesOPlenty'
|
|
connection 'scm:git:git://github.com/Glitchfiend/BiomesOPlenty.git'
|
|
developerConnection 'scm:git:git@github.com:Glitchfiend/BiomesOPlenty.git'
|
|
}
|
|
|
|
issueManagement {
|
|
system 'github'
|
|
url 'https://github.com/Glitchfiend/BiomesOPlenty/issues'
|
|
}
|
|
|
|
licenses {
|
|
license {
|
|
name 'Creative Commons Attribution-NonCommercial-NoDerivs 4.0 International Public License'
|
|
url 'http://creativecommons.org/licenses/by-nc-nd/4.0/'
|
|
distribution 'repo'
|
|
}
|
|
}
|
|
|
|
developers {
|
|
developer {
|
|
id 'Adubbz'
|
|
name 'Adubbz'
|
|
roles { role 'developer' }
|
|
}
|
|
developer {
|
|
id 'Amnet'
|
|
name 'Amnet'
|
|
roles { role 'developer' }
|
|
}
|
|
developer {
|
|
id 'Forstride'
|
|
name 'Forstride'
|
|
roles { role 'developer' }
|
|
}
|
|
developer {
|
|
id 'ted80'
|
|
name 'ted80'
|
|
roles { role 'developer' }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
logger.info('Publishing to repo folder')
|
|
|
|
mavenDeployer {
|
|
pom.version = "${project.minecraft.version}-${project.version}"
|
|
repository(url: 'file://localhost/' + project.file('repo').getAbsolutePath())
|
|
}
|
|
}
|
|
}
|
|
}
|