mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2024-11-10 20:45:59 +01:00
74f9e1f9a3
- Switch to SLF4J logging - Bump version - Add 0.6.1 changelog
192 lines
5.7 KiB
Groovy
192 lines
5.7 KiB
Groovy
buildscript {
|
|
repositories {
|
|
maven { url = 'https://maven.minecraftforge.net' }
|
|
jcenter()
|
|
mavenCentral()
|
|
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.matthewprenger.cursegradle' version "${cursegradle_version}"
|
|
}
|
|
|
|
apply plugin: 'net.minecraftforge.gradle'
|
|
apply plugin: 'org.parchmentmc.librarian.forgegradle'
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'maven-publish'
|
|
apply plugin: 'org.spongepowered.mixin'
|
|
|
|
boolean dev = System.getenv('RELEASE') == null || System.getenv('RELEASE').equalsIgnoreCase('false');
|
|
|
|
ext.buildNumber = System.getenv('BUILD_NUMBER')
|
|
if (buildNumber == null) buildNumber = 'custom'
|
|
|
|
version = "${mc_update_version}-${mod_version}" + (dev ? ".${buildNumber}" : '')
|
|
group = 'com.jozufozu.flywheel'
|
|
archivesBaseName = 'flywheel-forge'
|
|
|
|
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
|
|
|
|
println('Java: ' + System.getProperty('java.version') + ' JVM: ' + System.getProperty('java.vm.version') + '(' + System.getProperty('java.vendor') + ') Arch: ' + System.getProperty('os.arch'))
|
|
minecraft {
|
|
mappings channel: 'parchment', version: "${parchment_version}-${minecraft_version}"
|
|
|
|
runs {
|
|
client {
|
|
workingDirectory project.file('run')
|
|
|
|
property 'forge.logging.markers', ''
|
|
property 'forge.logging.console.level', 'debug'
|
|
property 'mixin.debug.export', 'true'
|
|
|
|
arg '-mixin.config=flywheel.mixins.json'
|
|
|
|
mods {
|
|
flywheel {
|
|
source sourceSets.main
|
|
}
|
|
}
|
|
}
|
|
|
|
server {
|
|
workingDirectory project.file('run')
|
|
|
|
property 'forge.logging.markers', 'REGISTRIES'
|
|
property 'forge.logging.console.level', 'debug'
|
|
|
|
arg '-mixin.config=flywheel.mixins.json'
|
|
|
|
mods {
|
|
flywheel {
|
|
source sourceSets.main
|
|
}
|
|
}
|
|
}
|
|
|
|
data {
|
|
workingDirectory project.file('run')
|
|
|
|
property 'forge.logging.markers', 'REGISTRIES'
|
|
property 'forge.logging.console.level', 'debug'
|
|
|
|
// Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources.
|
|
args '--mod', 'flywheel', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')
|
|
|
|
mods {
|
|
flywheel {
|
|
source sourceSets.main
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
mixin {
|
|
add sourceSets.main, 'flywheel.refmap.json'
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url 'https://www.cursemaven.com'
|
|
content {
|
|
includeGroup "curse.maven"
|
|
}
|
|
}
|
|
maven {
|
|
name 'tterrag maven'
|
|
url 'https://maven.tterrag.com/'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}"
|
|
|
|
compileOnly fg.deobf("curse.maven:starlight-526854:3599856")
|
|
|
|
// https://discord.com/channels/313125603924639766/725850371834118214/910619168821354497
|
|
// Prevent Mixin annotation processor from getting into IntelliJ's annotation processor settings
|
|
// This allows 'Settings > Build, Execution, and Deployment > Build Tools > Gradle > Build and run using' set to IntelliJ to work correctly
|
|
if (System.getProperty('idea.sync.active') != 'true') {
|
|
annotationProcessor "org.spongepowered:mixin:${mixin_version}:processor"
|
|
}
|
|
}
|
|
|
|
// Example for how to get properties into the manifest for reading by the runtime..
|
|
jar {
|
|
manifest {
|
|
attributes([
|
|
'Specification-Title' : 'flywheel',
|
|
//'Specification-Vendor': 'flywheel authors',
|
|
'Specification-Version' : '1', // We are version 1 of ourselves
|
|
'Implementation-Title' : project.name,
|
|
'Implementation-Version' : project.version,
|
|
//'Implementation-Vendor': 'flywheel authors',
|
|
'MixinConfigs' : 'flywheel.mixins.json',
|
|
'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
|
|
])
|
|
}
|
|
}
|
|
|
|
jar.finalizedBy('reobfJar')
|
|
|
|
javadoc {
|
|
source = [sourceSets.main.allJava]
|
|
// prevent java 8's strict doclint for javadocs from failing builds
|
|
options.addStringOption('Xdoclint:none', '-quiet')
|
|
}
|
|
|
|
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, sourcesJar, javadocJar
|
|
}
|
|
|
|
publishing {
|
|
tasks.publish.dependsOn 'build'
|
|
publications {
|
|
mavenJava(MavenPublication) {
|
|
artifact jar
|
|
artifact sourcesJar
|
|
artifact javadocJar
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
if (project.hasProperty('mavendir')) {
|
|
maven { url mavendir }
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.curseforge.enabled = !dev && project.hasProperty('jozu_curseforge_key')
|
|
|
|
curseforge {
|
|
if (project.hasProperty('jozu_curseforge_key')) {
|
|
apiKey = project.jozu_curseforge_key
|
|
}
|
|
|
|
project {
|
|
id = project.projectId
|
|
changelog = file('changelog.txt')
|
|
releaseType = project.curse_type
|
|
mainArtifact jar
|
|
addGameVersion '1.18.2'
|
|
}
|
|
}
|