BloodMagic/build.gradle

178 lines
4.5 KiB
Groovy
Raw Normal View History

2014-10-31 22:07:43 +00:00
buildscript {
repositories {
mavenCentral()
maven { url "http://files.minecraftforge.net/maven" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
2014-10-31 22:07:43 +00:00
}
dependencies {
2018-03-10 07:53:56 +00:00
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
2014-10-31 22:07:43 +00:00
}
}
plugins {
2018-03-10 07:53:56 +00:00
id "net.minecraftforge.gradle.forge" version "2.0.2"
2018-02-15 07:37:23 +00:00
id 'com.matthewprenger.cursegradle' version '1.0.10'
id 'maven-publish'
}
sourceSets {
compat {
compileClasspath += sourceSets.main.runtimeClasspath + sourceSets.main.output
}
main {
runtimeClasspath += sourceSets.compat.runtimeClasspath
}
}
def build_number = System.getenv('BUILD_NUMBER') != null ? System.getenv('BUILD_NUMBER') : 'CUSTOM'
def username = project.hasProperty('dev_username') ? "${dev_username}" : "${mod_name}"
group = package_group
archivesBaseName = mod_name
version = "${mc_version}-${mod_version}-${build_number}"
2014-10-31 22:07:43 +00:00
repositories {
maven { url "http://dvs1.progwml6.com/files/maven" }
2018-03-10 07:53:56 +00:00
maven { url "http://tehnut.info/maven" }
2014-10-31 22:07:43 +00:00
}
dependencies {
deobfCompile "mcp.mobius.waila:Hwyla:${hwyla_version}:api"
runtime "mcp.mobius.waila:Hwyla:${hwyla_version}"
deobfCompile "mezz.jei:jei_${mc_version}:${jei_version}:api"
runtime "mezz.jei:jei_${mc_version}:${jei_version}"
}
2014-10-31 22:07:43 +00:00
minecraft {
version = "${mc_version}-${forge_version}"
runDir = "run"
replace '${VERSION}', project.version
2018-02-11 08:09:04 +00:00
replaceIn "BloodMagic.java"
clientRunArgs += "--username=${username}"
if (project.hasProperty('mappings_version'))
mappings = project.mappings_version
}
2014-10-31 22:07:43 +00:00
processResources {
inputs.property "version", project.version
inputs.property "mcversion", project.minecraft.version
2014-10-31 22:07:43 +00:00
from(sourceSets.main.resources.srcDirs) {
include '**/*.info'
include '**/*.properties'
2014-10-31 22:07:43 +00:00
expand 'version': project.version, 'mcversion': project.minecraft.version
}
from(sourceSets.main.resources.srcDirs) {
exclude '**/*.info'
exclude '**/*.properties'
}
2014-10-31 22:07:43 +00:00
}
jar {
classifier = ''
2018-02-15 07:37:23 +00:00
from sourceSets.main.output
from sourceSets.api.output
from sourceSets.compat.output
manifest.mainAttributes(
2018-03-10 07:53:56 +00:00
"Built-By": System.getProperty('user.name'),
"Created-By": "${System.getProperty('java.vm.version')} + (${System.getProperty('java.vm.vendor')})",
"Implementation-Title": project.name,
"Implementation-Version": project.version,
"Built-On": "${mc_version}-${forge_version}"
)
}
task apiJar(type: Jar) {
classifier = 'api'
2018-02-15 07:37:23 +00:00
from sourceSets.api.output
// TODO: when FG bug is fixed, remove allJava from the api jar.
// https://github.com/MinecraftForge/ForgeGradle/issues/369
// Gradle should be able to pull them from the -sources jar.
from sourceSets.api.allJava
}
2018-02-15 07:37:23 +00:00
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allJava
from sourceSets.api.allJava
from sourceSets.compat.allJava
2018-02-15 07:37:23 +00:00
}
tasks.build.dependsOn apiJar, sourcesJar
2014-10-31 22:07:43 +00:00
tasks.withType(JavaCompile) { task ->
task.options.encoding = 'UTF-8'
}
2014-10-31 22:07:43 +00:00
publishing {
tasks.publish.dependsOn 'build'
publications {
mavenJava(MavenPublication) {
artifact jar
2018-02-15 07:37:23 +00:00
artifact sourcesJar
artifact apiJar
}
}
repositories {
if (project.hasProperty('maven_repo')) {
maven { url maven_repo }
} else {
mavenLocal()
}
}
}
2014-10-31 22:07:43 +00:00
2016-01-04 00:53:26 +00:00
String getChangelogText() {
def changelogFile = new File('changelog.txt')
String str = ''
String separator = '---'
int lineCount = 0
boolean done = false
changelogFile.eachLine {
if (done || it == null) {
return
}
if (lineCount < 3) {
lineCount++
2018-03-10 07:53:56 +00:00
if (it.startsWith(separator)) {
return
}
2016-01-04 00:53:26 +00:00
}
if (!it.startsWith(separator)) {
str += "$it" + (lineCount < 3 ? ':\n\n' : '\n')
return
}
done = true // once we go past the first version block, parse no more
}
return str
}
2016-01-03 01:14:48 +00:00
def curseRelations = {
2017-08-20 03:45:11 +00:00
optionalLibrary 'jei'
optionalLibrary 'hwyla'
requiredLibrary 'guide-api'
2016-01-03 01:14:48 +00:00
}
curseforge {
2016-01-03 01:14:48 +00:00
if (project.hasProperty('curse_key_WayofTime'))
2016-01-04 00:53:26 +00:00
apiKey = project.curse_key_WayofTime
project {
id = "${curse_id}"
2016-01-04 00:53:26 +00:00
changelog = getChangelogText()
2018-02-17 18:14:53 +00:00
releaseType = 'alpha'
2016-01-03 01:14:48 +00:00
relations curseRelations
2018-02-15 07:37:23 +00:00
addArtifact sourcesJar
addArtifact apiJar
}
}