Danielshe 5 years ago
parent
commit
e135b158b4
2 changed files with 13 additions and 1 deletions
  1. 1 1
      build.gradle
  2. 12 0
      src/main/resources/META-INF/mods.toml

+ 1 - 1
build.gradle

@@ -11,7 +11,7 @@ buildscript {
 apply plugin: 'net.minecraftforge.gradle'
 apply plugin: 'net.minecraftforge.gradle'
 apply plugin: 'eclipse'
 apply plugin: 'eclipse'
 
 
-version = "3.6"
+version = "3.6.1"
 group = "me.shedaniel" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
 group = "me.shedaniel" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
 archivesBaseName = "LightOverlay"
 archivesBaseName = "LightOverlay"
 
 

+ 12 - 0
src/main/resources/META-INF/mods.toml

@@ -31,3 +31,15 @@ displayName="Light Overlay Forge" #mandatory
 description='''
 description='''
 To provide users with NEI-like light overlay.
 To provide users with NEI-like light overlay.
 '''
 '''
+
+[[dependencies.examplemod]] #optional
+    # the modid of the dependency
+    modId="cloth-config2" #mandatory
+    # Does this dependency have to exist - if not, ordering below must be specified
+    mandatory=true #mandatory
+    # The version range of the dependency
+    versionRange="[1.4.1,)" #mandatory
+    # An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory
+    ordering="AFTER"
+    # Side this dependency is applied on - BOTH, CLIENT or SERVER
+    side="CLIENT"