2014-10-31 22:07:43 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2015-10-30 03:22:14 +00:00
|
|
|
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 {
|
2015-12-02 05:17:24 +00:00
|
|
|
classpath 'net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT'
|
2015-10-30 03:22:14 +00:00
|
|
|
classpath 'org.ajoberstar:gradle-git:0.10.1'
|
2014-10-31 22:07:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-30 03:22:14 +00:00
|
|
|
plugins {
|
2015-12-02 05:17:24 +00:00
|
|
|
id "net.minecraftforge.gradle.forge" version "2.0.2"
|
2016-02-18 18:15:50 +00:00
|
|
|
id 'com.matthewprenger.cursegradle' version '1.0.7'
|
2015-12-02 05:17:24 +00:00
|
|
|
id 'net.franz-becker.gradle-lombok' version '1.5'
|
2014-11-01 00:50:25 +00:00
|
|
|
}
|
|
|
|
|
2015-10-30 03:22:14 +00:00
|
|
|
apply plugin: 'maven-publish'
|
|
|
|
|
2016-01-03 01:14:48 +00:00
|
|
|
def build_number = 'CUSTOM'
|
2015-10-30 03:22:14 +00:00
|
|
|
|
|
|
|
if (System.getenv('BUILD_NUMBER') != null)
|
|
|
|
build_number = System.getenv('BUILD_NUMBER')
|
|
|
|
|
|
|
|
group = package_group
|
|
|
|
archivesBaseName = mod_name
|
2016-01-02 22:56:37 +00:00
|
|
|
version = "${mc_version}-${mod_version}-${build_number}"
|
2014-10-31 22:07:43 +00:00
|
|
|
|
2016-01-03 01:24:38 +00:00
|
|
|
if (project.hasProperty('gitpush'))
|
|
|
|
version += "-ss"
|
|
|
|
|
2015-10-30 03:22:14 +00:00
|
|
|
import org.ajoberstar.grgit.*
|
2014-11-02 01:04:00 +00:00
|
|
|
|
2015-10-30 03:22:14 +00:00
|
|
|
ext.repo = Grgit.open(project.file('.'))
|
2014-11-02 01:04:00 +00:00
|
|
|
def gitHash = 'unknown'
|
2015-10-30 03:22:14 +00:00
|
|
|
|
|
|
|
if (new File(projectDir, '.git').exists())
|
2014-11-02 01:04:00 +00:00
|
|
|
gitHash = repo.log().find().abbreviatedId
|
|
|
|
|
2014-10-31 22:07:43 +00:00
|
|
|
repositories {
|
2015-11-29 07:51:41 +00:00
|
|
|
maven { url "http://dvs1.progwml6.com/files/maven" }
|
2016-01-01 23:40:04 +00:00
|
|
|
maven { url "http://mobiusstrip.eu/maven" }
|
2016-02-04 04:31:09 +00:00
|
|
|
|
|
|
|
ivy {
|
|
|
|
name "Thaumcraft"
|
|
|
|
artifactPattern "https://dl.dropboxusercontent.com/u/47135879/[module]-[revision]-deobf.[ext]"
|
|
|
|
}
|
|
|
|
ivy {
|
|
|
|
name "Baubles"
|
|
|
|
artifactPattern "https://dl.dropboxusercontent.com/u/47135879/[module]-1.8.9-[revision]-deobf.[ext]"
|
|
|
|
}
|
2014-10-31 22:07:43 +00:00
|
|
|
}
|
|
|
|
|
2014-11-01 00:50:25 +00:00
|
|
|
dependencies {
|
2015-12-30 05:30:48 +00:00
|
|
|
deobfCompile "mezz.jei:jei_${mc_version}:${jei_version}"
|
2016-01-01 23:40:04 +00:00
|
|
|
|
2016-02-04 04:31:09 +00:00
|
|
|
compile "mcp.mobius.waila:Waila:${waila_version}_1.8.8:dev"
|
|
|
|
compile name: "Thaumcraft", version: "${mc_version}-${thaumcraft_version}", ext: "jar"
|
|
|
|
compile name: 'Baubles', version: "${baubles_version}", ext: 'jar'
|
2014-11-01 00:50:25 +00:00
|
|
|
}
|
2014-10-31 22:07:43 +00:00
|
|
|
|
2014-11-01 00:50:25 +00:00
|
|
|
minecraft {
|
2015-10-30 03:22:14 +00:00
|
|
|
version = "${mc_version}-${forge_version}"
|
2014-11-01 00:50:25 +00:00
|
|
|
runDir = "run"
|
2015-10-30 03:22:14 +00:00
|
|
|
|
|
|
|
replace "@VERSION@", project.version
|
2015-12-02 05:17:24 +00:00
|
|
|
replaceIn "Constants.java"
|
2015-11-02 20:39:44 +00:00
|
|
|
replaceIn "BloodMagicAPI.java"
|
2015-10-30 03:22:14 +00:00
|
|
|
|
|
|
|
if (project.hasProperty('mappings_version'))
|
|
|
|
mappings = project.mappings_version
|
2014-11-01 00:50:25 +00:00
|
|
|
}
|
2014-10-31 22:07:43 +00:00
|
|
|
|
2014-11-01 00:50:25 +00:00
|
|
|
processResources {
|
|
|
|
inputs.property "version", project.version
|
|
|
|
inputs.property "mcversion", project.minecraft.version
|
2014-10-31 22:07:43 +00:00
|
|
|
|
2014-11-01 00:50:25 +00:00
|
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
|
|
include '**/*.info'
|
|
|
|
include '**/*.properties'
|
2014-10-31 22:07:43 +00:00
|
|
|
|
2014-11-01 00:50:25 +00:00
|
|
|
expand 'version': project.version, 'mcversion': project.minecraft.version
|
|
|
|
}
|
2015-10-30 03:22:14 +00:00
|
|
|
|
2014-11-01 00:50:25 +00:00
|
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
|
|
exclude '**/*.info'
|
|
|
|
exclude '**/*.properties'
|
|
|
|
}
|
2014-10-31 22:07:43 +00:00
|
|
|
}
|
|
|
|
|
2016-01-09 01:17:17 +00:00
|
|
|
if (JavaVersion.current().isJava8Compatible()) {
|
|
|
|
allprojects {
|
|
|
|
tasks.withType(Javadoc) {
|
|
|
|
options.addStringOption('Xdoclint:none', '-quiet')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-30 03:22:14 +00:00
|
|
|
lombok {
|
|
|
|
version = "1.16.6"
|
|
|
|
sha256 = "e0a471be03e1e6b02bf019480cec7a3ac9801702bf7bf62f15d077ad4df8dd5d"
|
|
|
|
}
|
|
|
|
|
|
|
|
import net.franz_becker.gradle.lombok.task.DelombokTask
|
|
|
|
|
|
|
|
task delombok(type: DelombokTask) {
|
|
|
|
args("src/main/java", "-d", "build/sources/delomboked/java")
|
2014-11-01 00:50:25 +00:00
|
|
|
}
|
2014-10-31 22:07:43 +00:00
|
|
|
|
2015-10-30 03:22:14 +00:00
|
|
|
tasks.eclipse.dependsOn installLombok
|
|
|
|
|
2015-12-02 05:17:24 +00:00
|
|
|
jar {
|
|
|
|
classifier = ''
|
|
|
|
manifest.mainAttributes(
|
|
|
|
"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,
|
2016-01-01 18:56:11 +00:00
|
|
|
"Git-Hash": gitHash,
|
|
|
|
"Built-On": "${mc_version}-${forge_version}"
|
2015-12-02 05:17:24 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// API jar
|
|
|
|
task apiJar(type: Jar) {
|
|
|
|
from sourceSets.main.allSource
|
|
|
|
from sourceSets.main.output
|
|
|
|
include 'WayofTime/bloodmagic/api/**/*'
|
|
|
|
classifier = 'api'
|
|
|
|
}
|
|
|
|
|
2015-10-30 03:22:14 +00:00
|
|
|
// Javadoc jar
|
2014-11-01 00:50:25 +00:00
|
|
|
task javadocJar(type: Jar, dependsOn: javadoc) {
|
|
|
|
from javadoc.destinationDir
|
|
|
|
classifier = 'javadoc'
|
2014-10-31 22:07:43 +00:00
|
|
|
}
|
|
|
|
|
2015-10-30 03:22:14 +00:00
|
|
|
javadoc {
|
|
|
|
source = projectDir.path + "/build/sources/delomboked/java"
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.javadoc.dependsOn delombok
|
2015-12-02 05:17:24 +00:00
|
|
|
tasks.build.dependsOn javadoc, javadocJar, apiJar
|
2014-10-31 22:07:43 +00:00
|
|
|
|
2014-11-01 00:50:25 +00:00
|
|
|
tasks.withType(JavaCompile) { task ->
|
|
|
|
task.options.encoding = 'UTF-8'
|
|
|
|
}
|
2014-10-31 22:07:43 +00:00
|
|
|
|
2015-10-30 03:22:14 +00:00
|
|
|
publishing {
|
|
|
|
tasks.publish.dependsOn 'build'
|
|
|
|
publications {
|
|
|
|
mavenJava(MavenPublication) {
|
|
|
|
artifact jar
|
|
|
|
artifact javadocJar
|
2016-01-01 18:56:11 +00:00
|
|
|
artifact sourceJar
|
2015-12-02 05:17:24 +00:00
|
|
|
artifact apiJar
|
2015-10-30 03:22:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
if (project.hasProperty('maven_repo')) {
|
|
|
|
maven { url maven_repo }
|
|
|
|
} else {
|
|
|
|
mavenLocal()
|
|
|
|
}
|
|
|
|
}
|
2014-11-01 00:50:25 +00:00
|
|
|
}
|
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++
|
|
|
|
if (it.startsWith(separator)) {return}
|
|
|
|
}
|
|
|
|
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 = {
|
|
|
|
optionalLibrary 'just-enough-items-jei'
|
|
|
|
optionalLibrary 'waila'
|
|
|
|
}
|
|
|
|
|
2015-10-30 03:22:14 +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
|
2015-10-30 03:22:14 +00:00
|
|
|
|
|
|
|
project {
|
|
|
|
id = "${curse_id}"
|
2016-01-04 00:53:26 +00:00
|
|
|
changelog = getChangelogText()
|
2016-01-02 22:56:37 +00:00
|
|
|
releaseType = 'beta'
|
2015-10-30 03:22:14 +00:00
|
|
|
|
2016-01-03 01:14:48 +00:00
|
|
|
addGameVersion '1.8.9'
|
|
|
|
|
|
|
|
relations curseRelations
|
|
|
|
|
2015-10-30 03:22:14 +00:00
|
|
|
addArtifact javadocJar
|
2016-01-01 18:56:11 +00:00
|
|
|
addArtifact sourceJar
|
2015-12-02 05:17:24 +00:00
|
|
|
addArtifact apiJar
|
2015-10-30 03:22:14 +00:00
|
|
|
}
|
|
|
|
}
|