BloodMagic/build.gradle

184 lines
4.4 KiB
Groovy
Raw Normal View History

2014-10-31 22:07:43 +00:00
buildscript {
repositories {
maven { url = 'https://files.minecraftforge.net/maven' }
jcenter()
2014-10-31 22:07:43 +00:00
mavenCentral()
}
dependencies {
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true
2014-10-31 22:07:43 +00:00
}
}
plugins {
id "com.matthewprenger.cursegradle" version "1.3.0"
id "maven-publish"
}
apply plugin: 'net.minecraftforge.gradle'
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 {
minecraft "net.minecraftforge:forge:${mc_version}-${forge_version}"
compile fg.deobf("mezz.jei:jei-${mc_version}:${jei_version}")
compile fg.deobf("mcp.mobius.waila:Hwyla:${waila_version}")
}
2014-10-31 22:07:43 +00:00
minecraft {
mappings channel: "snapshot", version: "20190912-1.14.3"
runs {
client {
workingDirectory project.file('run')
property 'forge.logging.markers', ''
property 'forge.logging.console.level', 'info'
property 'username', username
mods {
bloodmagic {
source sourceSets.main
}
}
}
server {
workingDirectory project.file('run/server')
property 'forge.logging.markers', ''
property 'forge.logging.console.level', 'info'
mods {
bloodmagic {
source sourceSets.main
}
}
}
}
}
2014-10-31 22:07:43 +00:00
apply from: "gradle/process_mod_info.gradle"
processResources {
inputs.property "version", project.version
2014-10-31 22:07:43 +00:00
from(sourceSets.main.resources.srcDirs) {
include '**/*.toml'
2014-10-31 22:07:43 +00:00
expand 'version': project.version
}
from(sourceSets.main.resources.srcDirs) {
exclude '**/*.toml'
}
2014-10-31 22:07:43 +00:00
}
2018-02-15 07:37:23 +00:00
allprojects {
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
jar {
classifier = ''
2018-02-15 07:37:23 +00:00
from sourceSets.main.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}"
)
}
// API jar
task apiJar(type: Jar) {
classifier = 'api'
include 'com/WayofTime/bloodmagic/api/**/*'
exclude 'com/WayofTime/bloodmagic/api/impl/**/*'
from sourceSets.main.allSource
from sourceSets.main.output
2014-10-31 22:07:43 +00:00
}
2018-02-15 07:37:23 +00:00
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allJava
}
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'
2016-01-03 01:14:48 +00:00
}
curseforge {
if (project.hasProperty('curse_key_TehNut'))
2019-02-01 03:53:46 +00:00
apiKey = project.curse_key_TehNut
project {
id = "${curse_id}"
2016-01-04 00:53:26 +00:00
changelog = getChangelogText()
2018-08-26 21:05:41 +00:00
releaseType = 'beta'
2016-01-03 01:14:48 +00:00
relations curseRelations
2018-02-15 07:37:23 +00:00
addArtifact sourcesJar
addArtifact apiJar
}
}