Configuring the workspace - Magistu/Epic-Knights GitHub Wiki

To set up a project dependent on the Epic Knights mod, follow these two steps:

  1. Create a new Architectury project. It is highly recommended doing it via plugin for Intellij.
  2. Insert the following lines into the repositories and dependencies section of the build.gradle files located in common, forge and fabric folders:

Common:

repositories {
    maven { url = "https://s01.oss.sonatype.org/content/groups/public/" }
}

dependencies {
    modApi "io.github.magistu:1.18.2-epic-knights-common:8.2"
}

Forge:

repositories {
    maven { url = "https://s01.oss.sonatype.org/content/groups/public/" }
}

dependencies {
    modApi "io.github.magistu:1.18.2-epic-knights-forge:8.2"
}

Fabric:

repositories {
    maven { url "https://s01.oss.sonatype.org/content/groups/public/" }
    maven { url "https://maven.terraformersmc.com/releases/" }
}

dependencies {
    modApi "io.github.magistu:1.18.2-epic-knights-fabric:8.2"
}