Skip to content

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
ArduFish authored Sep 10, 2024
1 parent 2c41f57 commit 2a25d0e
Showing 1 changed file with 0 additions and 30 deletions.
30 changes: 0 additions & 30 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,24 +1,8 @@
plugins {
id 'fabric-loom' version '1.7-SNAPSHOT'
id 'maven-publish'
//id "com.modrinth.minotaur" version "2.+"
}

//import com.modrinth.minotaur.dependencies.ModDependency

/*modrinth {
token = '${{ secrets.RINTHMOD }}' // Please use an environment variable for this! The default is `$MODRINTH_TOKEN`.
projectId = 'AABBCCDD' // The ID of your Modrinth project. Slugs will not work.
versionNumber = '1.0.0' // The (preferably SemVer) version of the mod. If not specified, it'll use the `version` declaration
versionName = 'My awesome release' // The version title. If not specified, it'll use the version number
uploadFile = remapJar // Tells Minotaur to use the remapped jar
gameVersions = ['1.18', '1.18.1', '1.18.2'] // An array of game versions the version supports
loaders = ['fabric'] // Self-explanatory.
dependencies = [
new ModDependency('P7dR8mSH', 'required') // Creates a new required dependency on Fabric API
]
}
*/
version = project.mod_version
group = project.maven_group

Expand All @@ -32,14 +16,6 @@ repositories {
// 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.
//maven {
//name 'Xander Maven'
//url 'https://maven.isxander.dev/releases'
//name 'xStopho Mods'
//url 'https://raw.githubusercontent.com/Stein-N/resources/main/maven'
//}
//maven { url "https://maven.shedaniel.me/" }
//maven { url "https://maven.terraformersmc.com/releases/" }
maven {
url "https://api.modrinth.com/maven"
}
Expand All @@ -65,15 +41,9 @@ 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 'dev.isxander:yet-another-config-lib:3.5.0+1.20.6-fabric'
// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
//implementation "xstopho.resource-config-api:resource-config-api-fabric:1.20+1.1.0"
//modApi("me.shedaniel.cloth:cloth-config-fabric:14.0.126") {
//exclude(group: "net.fabricmc.fabric-api")
//}
include(modImplementation("maven.modrinth:fstats:2023.12.3"))
//include(modImplementation("maven.modrinth:ducky-updater-lib:2023.10.1"))
modImplementation ('eu.raspberrymods.fishlib:fish-lib:1.2.0.0+1.21')
include(modImplementation("maven.modrinth:ducky-updater-lib:2023.10.1"))
include(modImplementation "maven.modrinth:ranged-weapon-api:${project.ranged_weapon_api_version}")
Expand Down

0 comments on commit 2a25d0e

Please sign in to comment.