Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Warn users when they are missing needed dependency of GlassNetworking #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import java.net.URI

plugins {
id("maven-publish")
id("fabric-loom") version "1.7.2"
id("babric-loom-extension") version "1.7.4"
id("fabric-loom") version "1.8.12"
id("babric-loom-extension") version "1.8.9"
}

//noinspection GroovyUnusedAssignment
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ org.gradle.daemon=false

# Mod Properties
# http://maven.apache.org/guides/mini/guide-naming-conventions.html
mod_version = 3.0.2
mod_version = 3.0.3
maven_group = net.glasslauncher.mods
archives_base_name = GlassConfigAPI
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Sun Jun 14 19:21:24 BST 2020
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
Expand Down
3 changes: 2 additions & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
],

"depends": {
"minecraft": "1.0.0-beta.7.3"
"minecraft": "1.0.0-beta.7.3",
"glassnetworking": "*"
},
"suggests": {
"modmenu": "*"
Expand Down