structure-item-mod-fabric/build.gradle

92 lines
2.9 KiB
Groovy
Raw Normal View History

2020-04-19 22:54:00 +02:00
plugins {
2023-07-01 01:37:05 +02:00
id "com.modrinth.minotaur" version "2.+"
2024-07-07 21:21:19 +02:00
id 'fabric-loom' version '1.7-SNAPSHOT'
2020-04-19 22:54:00 +02:00
id 'maven-publish'
}
version = project.mod_version
group = project.maven_group
2023-07-01 01:37:05 +02:00
base {
archivesName = project.archives_base_name
}
repositories {
// Add repositories to retrieve artifacts from in here.
// You should only use this when depending on other mods because
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
// See https://docs.gradle.org/current/userguide/declaring_repositories.html
// for more information about repositories.
2023-07-01 15:16:21 +02:00
mavenCentral()
2023-07-01 01:37:05 +02:00
}
2020-04-19 22:54:00 +02:00
dependencies {
2023-07-01 01:37:05 +02:00
// To change the versions see the gradle.properties file
2020-04-19 22:54:00 +02:00
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
2023-07-01 01:37:05 +02:00
// Fabric API. This is technically optional, but you probably want it anyway.
2021-03-31 22:10:05 +02:00
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
2023-07-01 01:37:05 +02:00
// Uncomment the following line to enable the deprecated Fabric API modules.
// These are included in the Fabric API production distribution and allow you to update your mod to the latest modules at a later more convenient time.
2023-07-01 15:16:21 +02:00
include 'net.objecthunter:exp4j:0.4.8'
implementation 'net.objecthunter:exp4j:0.4.8'
2023-07-01 01:37:05 +02:00
// modImplementation "net.fabricmc.fabric-api:fabric-api-deprecated:${project.fabric_version}"
2020-04-19 22:54:00 +02:00
}
processResources {
inputs.property "version", project.version
2023-07-01 01:37:05 +02:00
filesMatching("fabric.mod.json") {
2020-04-19 22:54:00 +02:00
expand "version": project.version
}
}
2023-07-01 01:37:05 +02:00
tasks.withType(JavaCompile).configureEach {
2024-07-07 21:21:19 +02:00
it.options.release = 21
2020-04-19 22:54:00 +02:00
}
2023-07-01 01:37:05 +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()
2024-07-07 21:21:19 +02:00
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
2020-04-19 22:54:00 +02:00
}
jar {
2023-07-01 01:37:05 +02:00
from("LICENSE") {
rename { "${it}_${project.archivesBaseName}"}
}
2020-04-19 22:54:00 +02:00
}
2023-07-01 01:37:05 +02:00
import com.modrinth.minotaur.dependencies.ModDependency
modrinth {
projectId = 'lwR0Ovmu' // The ID of your Modrinth project. Slugs will not work.
uploadFile = remapJar // Tells Minotaur to use the remapped jar
versionType = "beta"
dependencies = [
new ModDependency('P7dR8mSH', 'required'), //required dependency on Fabric API
]
}
2020-04-19 22:54:00 +02:00
// configure the maven publication
publishing {
publications {
mavenJava(MavenPublication) {
2023-07-01 01:37:05 +02:00
from components.java
2020-04-19 22:54:00 +02:00
}
}
2023-07-01 01:37:05 +02:00
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
2020-04-19 22:54:00 +02:00
repositories {
2023-07-01 01:37:05 +02:00
// Add repositories to publish to here.
// Notice: This block does NOT have the same function as the block in the top level.
// The repositories here will be used for publishing your artifact, not for
// retrieving dependencies.
2020-04-19 22:54:00 +02:00
}
2023-07-01 01:37:05 +02:00
}