Flywheel/build.gradle

192 lines
5.8 KiB
Groovy
Raw Normal View History

buildscript {
repositories {
maven { url = 'https://maven.minecraftforge.net' }
jcenter()
mavenCentral()
2021-11-08 22:19:48 +01:00
maven { url = 'https://repo.spongepowered.org/repository/maven-public' }
maven { url = 'https://maven.parchmentmc.org' }
}
dependencies {
2021-11-08 22:19:48 +01:00
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 {
2021-11-08 22:19:48 +01:00
id 'com.matthewprenger.cursegradle' version "${cursegradle_version}"
}
2021-06-16 20:19:33 +02:00
apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'org.parchmentmc.librarian.forgegradle'
apply plugin: 'eclipse'
2021-06-21 22:56:27 +02:00
apply plugin: 'maven-publish'
2021-06-16 20:19:33 +02:00
apply plugin: 'org.spongepowered.mixin'
boolean dev = System.getenv('RELEASE') == null || System.getenv('RELEASE').equalsIgnoreCase('false');
2021-06-19 08:52:13 +02:00
ext.buildnumber = 0
project.buildnumber = System.getenv('BUILD_NUMBER') != null ? System.getenv('BUILD_NUMBER') : 'custom'
version = "${mc_update_version}-${mod_version}" + (dev ? ".${buildnumber}" : '')
2021-06-21 22:56:27 +02:00
group = 'com.jozufozu.flywheel'
archivesBaseName = 'flywheel-forge'
2021-12-07 06:29:21 +01:00
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
2021-09-19 02:01:20 +02:00
println('Java: ' + System.getProperty('java.version') + ' JVM: ' + System.getProperty('java.vm.version') + '(' + System.getProperty('java.vendor') + ') Arch: ' + System.getProperty('os.arch'))
minecraft {
2021-12-24 08:09:51 +01:00
mappings channel: 'parchment', version: "${parchment_version}-${minecraft_version}"
2021-06-16 20:19:33 +02:00
2021-04-10 01:23:49 +02:00
runs {
2021-06-16 20:19:33 +02:00
client {
workingDirectory project.file('run')
2021-06-16 20:19:33 +02:00
property 'forge.logging.markers', ''
property 'forge.logging.console.level', 'debug'
property 'mixin.debug.export', 'true'
2021-06-16 20:19:33 +02:00
arg '-mixin.config=flywheel.mixins.json'
2021-06-16 20:19:33 +02:00
mods {
2021-06-16 20:19:33 +02:00
flywheel {
source sourceSets.main
}
}
}
server {
2021-06-16 20:19:33 +02:00
workingDirectory project.file('run')
property 'forge.logging.markers', 'REGISTRIES'
property 'forge.logging.console.level', 'debug'
arg '-mixin.config=flywheel.mixins.json'
2021-06-16 20:19:33 +02:00
mods {
2021-06-16 20:19:33 +02:00
flywheel {
source sourceSets.main
}
}
}
data {
workingDirectory project.file('run')
2021-06-16 20:19:33 +02:00
property 'forge.logging.markers', 'REGISTRIES'
property 'forge.logging.console.level', 'debug'
2021-06-16 20:19:33 +02:00
// 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 {
2021-06-16 20:19:33 +02:00
flywheel {
source sourceSets.main
}
}
}
}
}
2021-06-16 20:19:33 +02:00
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}"
2021-04-10 01:23:49 +02:00
compileOnly fg.deobf("curse.maven:starlight-526854:3559934")
// 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"
}
}
2021-06-16 20:19:33 +02:00
// 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")
])
}
}
2021-06-16 20:19:33 +02:00
jar.finalizedBy('reobfJar')
2021-06-19 08:52:13 +02:00
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
}
2021-06-21 22:56:27 +02:00
publishing {
tasks.publish.dependsOn 'build'
publications {
mavenJava(MavenPublication) {
artifact jar
artifact sourcesJar
artifact javadocJar
2021-06-21 22:56:27 +02:00
}
}
repositories {
if (project.hasProperty('mavendir')) {
maven { url mavendir }
}
}
}
2021-06-19 08:52:13 +02:00
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
2021-12-12 02:32:39 +01:00
addGameVersion '1.18.1'
2021-06-19 08:52:13 +02:00
}
}