This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
SorceryCraft/build.gradle

80 lines
2.1 KiB
Groovy
Raw Normal View History

2020-03-01 18:19:59 +00:00
plugins {
id 'fabric-loom' version '0.2.7-SNAPSHOT'
id 'com.matthewprenger.cursegradle' version '1.4.0'
2020-03-01 18:19:59 +00:00
}
compileJava {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
2020-03-01 18:19:59 +00:00
2020-03-04 01:34:36 +00:00
archivesBaseName = project.archives_base_name
version = project.mod_version as Object
group = project.maven_group as Object
2020-03-01 18:19:59 +00:00
minecraft {
}
dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
2020-03-01 18:19:59 +00:00
}
processResources {
2020-03-07 00:21:27 +00:00
inputs.property 'version', version
2020-03-01 18:19:59 +00:00
from(sourceSets.main.resources.srcDirs) {
2020-03-07 00:21:27 +00:00
include 'fabric.mod.json'
expand 'version': version
2020-03-01 18:19:59 +00:00
}
from(sourceSets.main.resources.srcDirs) {
2020-03-07 00:21:27 +00:00
exclude 'fabric.mod.json'
2020-03-01 18:19:59 +00:00
}
}
// 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
tasks.withType(JavaCompile) {
2020-03-07 00:21:27 +00:00
options.encoding = 'UTF-8'
2020-03-01 18:19:59 +00:00
}
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
// if it is present.
// If you remove this task, sources will not be generated.
task sourcesJar(type: Jar, dependsOn: classes) {
2020-03-07 00:21:27 +00:00
classifier 'sources'
2020-03-01 18:19:59 +00:00
from sourceSets.main.allSource
}
jar {
from "LICENSE"
}
2020-03-07 00:21:27 +00:00
if (project.hasProperty('curseforge.api_key')) {
curseforge {
apiKey = project.getProperty('curseforge.api_key')
2020-03-07 00:21:27 +00:00
project {
id = project.curseforge_id
changelog = 'A changelog can be found at https://gitea.thebrokenrail.com/TheBrokenRail/SorceryCraft/src/branch/master/CHANGELOG.md'
releaseType = 'release'
addGameVersion project.simple_minecraft_version
addGameVersion 'Fabric'
mainArtifact(remapJar) {
displayName = "SorceryCraft v${version} for ${project.minecraft_version}"
}
afterEvaluate {
uploadTask.dependsOn('remapJar')
}
relations {
requiredDependency 'fabric-api'
}
}
2020-03-07 00:21:27 +00:00
options {
forgeGradleIntegration = false
}
}
}