Flywheel/build.gradle

139 lines
4.1 KiB
Groovy
Raw Normal View History

plugins {
2021-10-15 01:20:56 +02:00
id 'fabric-loom' version '0.10-SNAPSHOT'
id 'maven-publish'
id 'com.matthewprenger.cursegradle' version '1.4.0'
}
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'
2021-06-16 20:19:33 +02:00
archivesBaseName = 'flywheel'
2021-10-15 01:20:56 +02:00
sourceCompatibility = JavaVersion.VERSION_16
targetCompatibility = JavaVersion.VERSION_16
java.toolchain.languageVersion = JavaLanguageVersion.of(16)
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'))
2021-06-16 20:19:33 +02:00
2021-10-15 01:20:56 +02:00
repositories {
maven {
name "tterrag maven"
url "https://maven.tterrag.com/"
}
}
2021-06-16 20:19:33 +02:00
2021-10-15 01:20:56 +02:00
dependencies {
// To change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings loom.officialMojangMappings()
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
2021-10-15 01:20:56 +02:00
// Fabric API
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
2021-06-16 20:19:33 +02:00
2021-10-15 01:20:56 +02:00
implementation 'com.google.code.findbugs:jsr305:3.0.2'
}
2021-06-16 20:19:33 +02:00
2021-10-15 01:20:56 +02:00
processResources {
inputs.property 'version', project.version
2021-06-16 20:19:33 +02:00
2021-10-15 01:20:56 +02:00
filesMatching('fabric.mod.json') {
expand 'version': project.version
}
}
2021-10-15 01:20:56 +02:00
tasks.withType(JavaCompile).configureEach {
// ensure that the encoding is set to UTF-8, no matter what the system default is
// this fixes some edge cases with special characters not displaying correctly
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
// If Javadoc is generated, this must be specified in that task too.
it.options.encoding = 'UTF-8'
2021-10-15 01:20:56 +02:00
// Minecraft 1.17 (21w19a) upwards uses Java 16.
it.options.release = 16
}
2021-10-15 01:20:56 +02:00
java {
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
// if it is present.
// If you remove this line, sources will not be generated.
withSourcesJar()
}
2021-10-15 01:20:56 +02:00
jar {
from('LICENSE') {
rename { "${it}_${project.archivesBaseName}" }
}
}
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([
2021-06-16 20:19:33 +02:00
"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")
])
}
}
javadoc {
source = [sourceSets.main.allJava]
// prevent java 8's strict doclint for javadocs from failing builds
options.addStringOption('Xdoclint:none', '-quiet')
}
task javadocJar(type: Jar, dependsOn: javadoc) {
from javadoc.destinationDir
archiveClassifier.set('javadoc')
}
artifacts {
2021-10-15 01:20:56 +02:00
archives remapJar, sourcesJar, javadocJar
}
2021-06-21 22:56:27 +02:00
publishing {
tasks.publish.dependsOn 'build'
publications {
mavenJava(MavenPublication) {
2021-10-15 01:20:56 +02:00
artifact remapJar
artifact(sourcesJar) {
builtBy remapSourcesJar
}
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
addGameVersion '1.17.1'
2021-06-19 08:52:13 +02:00
}
}