mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-03 21:29:06 +01:00
272 lines
8.9 KiB
Groovy
272 lines
8.9 KiB
Groovy
buildscript {
|
|
repositories {
|
|
maven { url = 'https://maven.minecraftforge.net' }
|
|
mavenCentral()
|
|
jcenter()
|
|
maven { url = 'https://repo.spongepowered.org/repository/maven-public' }
|
|
maven { url = 'https://maven.parchmentmc.org' }
|
|
}
|
|
dependencies {
|
|
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: "${forgegradle_version}", changing: true
|
|
classpath "org.spongepowered:mixingradle:${mixingradle_version}"
|
|
classpath "org.parchmentmc:librarian:${librarian_version}"
|
|
}
|
|
}
|
|
plugins {
|
|
id 'com.github.johnrengelman.shadow' version "${shadow_version}"
|
|
id 'com.matthewprenger.cursegradle' version "${cursegradle_version}"
|
|
}
|
|
apply plugin: 'net.minecraftforge.gradle'
|
|
// Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'maven-publish'
|
|
apply plugin: 'org.spongepowered.mixin'
|
|
apply plugin: 'org.parchmentmc.librarian.forgegradle'
|
|
|
|
boolean dev = System.getenv('RELEASE') == null || System.getenv('RELEASE').equals('false');
|
|
|
|
ext.buildnumber = 0
|
|
project.buildnumber = System.getenv('BUILD_NUMBER') != null ? System.getenv('BUILD_NUMBER') : 'custom'
|
|
|
|
version = "mc${minecraft_version}_v${mod_version}" + (dev && !buildnumber.equals('custom') ? "+${buildnumber}" : '')
|
|
group = 'com.simibubi.create'
|
|
archivesBaseName = 'create'
|
|
|
|
java.toolchain.languageVersion = JavaLanguageVersion.of(16)
|
|
|
|
minecraft {
|
|
mappings channel: 'parchment', version: "${parchment_version}-${minecraft_version}"
|
|
accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
|
|
|
|
runs {
|
|
client {
|
|
workingDirectory project.file('run')
|
|
arg '-mixin.config=create.mixins.json'
|
|
arg '-mixin.config=flywheel.mixins.json'
|
|
//jvmArgs '-XX:+UnlockCommercialFeatures' // uncomment for profiling
|
|
property 'forge.logging.console.level', 'info'
|
|
property 'mixin.env.remapRefMap', 'true'
|
|
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
|
|
mods {
|
|
create {
|
|
source sourceSets.main
|
|
}
|
|
}
|
|
}
|
|
|
|
server {
|
|
workingDirectory project.file('run/server')
|
|
arg '-mixin.config=create.mixins.json'
|
|
property 'forge.logging.console.level', 'info'
|
|
property 'mixin.env.remapRefMap', 'true'
|
|
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
|
|
mods {
|
|
create {
|
|
source sourceSets.main
|
|
}
|
|
}
|
|
}
|
|
|
|
data {
|
|
workingDirectory project.file('run')
|
|
property 'forge.logging.markers', 'REGISTRIES,REGISTRYDUMP'
|
|
property 'forge.logging.console.level', 'debug'
|
|
property 'mixin.env.remapRefMap', 'true'
|
|
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
|
|
args '--mod', 'create', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources')
|
|
mods {
|
|
create {
|
|
source sourceSets.main
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
compileJava {
|
|
options.compilerArgs = ['-Xdiags:verbose']
|
|
}
|
|
|
|
sourceSets.main.resources {
|
|
srcDir 'src/generated/resources'
|
|
}
|
|
|
|
mixin {
|
|
add sourceSets.main, 'create.refmap.json'
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
// Location of the maven that hosts JEI files (and TiC)
|
|
name 'Progwml6 maven'
|
|
url 'https://dvs1.progwml6.com/files/maven'
|
|
}
|
|
/*maven {
|
|
// Location of a maven mirror for JEI files, as a fallback
|
|
name 'ModMaven'
|
|
url 'https://modmaven.k-4u.nl'
|
|
}*/
|
|
maven {
|
|
// Location of the maven for vazkii's mods
|
|
name 'blamejared'
|
|
url 'https://maven.blamejared.com'
|
|
}
|
|
maven {
|
|
// Location of the maven for mixed mappings, Registrate, and Flywheel
|
|
name 'tterrag maven'
|
|
url 'https://maven.tterrag.com'
|
|
}
|
|
maven {
|
|
url 'https://www.cursemaven.com'
|
|
content {
|
|
includeGroup "curse.maven"
|
|
}
|
|
}
|
|
maven {
|
|
//location of the maven for dynamic trees
|
|
url 'https://harleyoconnor.com/maven'
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
shade
|
|
}
|
|
|
|
dependencies {
|
|
minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}"
|
|
|
|
def registrate = "com.tterrag.registrate:Registrate:${registrate_version}"
|
|
implementation fg.deobf(registrate)
|
|
shade registrate
|
|
|
|
if (findProject(':Flywheel') != null) {
|
|
implementation project(':Flywheel') // jozu: I use a gradle workspace with both projects
|
|
} else {
|
|
implementation fg.deobf("com.jozufozu.flywheel:Flywheel:${flywheel_version}")
|
|
}
|
|
|
|
compileOnly fg.deobf("mezz.jei:jei-${minecraft_version}:${jei_version}:api")
|
|
runtimeOnly fg.deobf("mezz.jei:jei-${minecraft_version}:${jei_version}")
|
|
|
|
// implementation fg.deobf("curse.maven:druidcraft-340991:3101903")
|
|
// implementation fg.deobf("com.ferreusveritas.dynamictrees:DynamicTrees-1.16.5:0.10.0-Beta25")
|
|
// runtimeOnly fg.deobf("vazkii.arl:AutoRegLib:1.4-35.69")
|
|
// runtimeOnly fg.deobf("vazkii.quark:Quark:r2.0-212.984")
|
|
// runtimeOnly fg.deobf("slimeknights.mantle:Mantle:1.16.5-1.6.115")
|
|
// runtimeOnly fg.deobf("slimeknights.tconstruct:TConstruct:1.16.5-3.1.1.252")
|
|
|
|
annotationProcessor 'org.spongepowered:mixin:0.8.4:processor'
|
|
}
|
|
|
|
jar {
|
|
classifier = 'slim'
|
|
manifest {
|
|
attributes([
|
|
'Specification-Title': 'create',
|
|
'Specification-Vendor': 'simibubi',
|
|
'Specification-Version': '1',
|
|
'Implementation-Title': project.name,
|
|
'Implementation-Version': '${version}',
|
|
'Implementation-Vendor': 'simibubi',
|
|
'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"),
|
|
'MixinConfigs': 'create.mixins.json'
|
|
])
|
|
}
|
|
}
|
|
|
|
shadowJar {
|
|
classifier = ''
|
|
configurations = [project.configurations.shade]
|
|
relocate 'com.tterrag.registrate', 'com.simibubi.create.repack.registrate'
|
|
}
|
|
|
|
reobf {
|
|
shadowJar {}
|
|
}
|
|
|
|
|
|
task sourcesJar(type: Jar) {
|
|
from sourceSets.main.allSource
|
|
archiveBaseName.set(project.archivesBaseName)
|
|
archiveVersion.set("${project.version}")
|
|
archiveClassifier.set('sources')
|
|
}
|
|
|
|
task javadocJar(type: Jar, dependsOn: javadoc) {
|
|
from javadoc.destinationDir
|
|
archiveClassifier.set('javadoc')
|
|
}
|
|
|
|
artifacts {
|
|
archives jar, shadowJar, sourcesJar, javadocJar
|
|
}
|
|
|
|
publishing {
|
|
tasks.publish.dependsOn 'build'
|
|
publications {
|
|
mavenJava(MavenPublication) {
|
|
artifact shadowJar
|
|
artifact sourcesJar
|
|
artifact javadocJar
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
if (project.hasProperty('mavendir')) {
|
|
maven { url mavendir }
|
|
}
|
|
}
|
|
}
|
|
|
|
String getChangelogText() {
|
|
def changelogFile = file('changelog.txt')
|
|
String str = ''
|
|
int lineCount = 0
|
|
boolean done = false
|
|
changelogFile.eachLine {
|
|
if (done || it == null) {
|
|
return
|
|
}
|
|
if (it.size() > 1) {
|
|
def temp = it
|
|
if (lineCount == 0) {
|
|
temp = "Create ${version}"
|
|
temp = "<span style=\"font-size: 18px; color: #333399;\">Create v${mod_version}</span> <em>for Minecraft ${minecraft_version}</em><br/>"
|
|
} else if (it.startsWith('-')) {
|
|
temp = " $temp<br/>"
|
|
temp = temp.replaceAll("(\\S+\\/\\S+)#([0-9]+)\\b", "<a href=\"https://github.com/\$1/issues/\$2\">\$0</a>");
|
|
temp = temp.replaceAll("#([0-9]+)\\b(?!<\\/a>)", "<a href=\"https://github.com/$github_project/issues/\$1\">\$0</a>");
|
|
} else {
|
|
temp = "<h4>$temp</h4>"
|
|
}
|
|
str += temp
|
|
lineCount++
|
|
} else {
|
|
str += "<p>Please submit any Issues you come across on the <a href=\"https://github.com/${github_project}/issues\" rel=\"nofollow\">Issue Tracker</a>.</p>"
|
|
done = true
|
|
}
|
|
}
|
|
return str
|
|
}
|
|
|
|
// changelog debugging
|
|
// new File("changelog.html").write getChangelogText()
|
|
// tasks.curseforge.enabled = !dev && project.hasProperty('simi_curseforge_key')
|
|
// curseforge {
|
|
// if (project.hasProperty('simi_curseforge_key')) {
|
|
// apiKey = project.simi_curseforge_key
|
|
// }
|
|
//
|
|
// project {
|
|
// id = project.projectId
|
|
// changelog = System.getenv('CHANGELOG') == null || System.getenv('CHANGELOG').equals('none') ? getChangelogText() : System.getenv('CHANGELOG')
|
|
// changelogType = 'html'
|
|
// releaseType = project.curse_type
|
|
// mainArtifact(shadowJar) {
|
|
// displayName = "Create - ${version}"
|
|
// }
|
|
// relations {
|
|
// optionalDependency 'jei'
|
|
// }
|
|
// }
|
|
// }
|