Skip to content

Adding Grand Economy to your dev environment

The_Fireplace edited this page Feb 27, 2022 · 1 revision

To use this with your mod, include the following in build.gradle:

repositories {
  maven {
	name 'Cloth Config'
	url 'https://maven.shedaniel.me/'
  }
  maven {
	name 'Mod Menu'
	url 'https://maven.terraformersmc.com/releases/'
  }
}
dependencies {
  modCompileOnly "dev.the-fireplace:Grand-Economy:${project.grandeconomy_version}:api"
  modRuntimeOnly "dev.the-fireplace:Grand-Economy:${project.grandeconomy_version}"
}

And in gradle.properties:

grandeconomy_version=<mod version>+<minecraft version>
Clone this wiki locally