Getting Started
tip
Before reading this document, you should have the following knowledge:
- Proficiency in Java
- Familiarity with Minecraft mod development
Ayame's JavaDoc and modularity make it easy for you to develop add-ons for it.
Configuring Dependencies
To import Ayame into your project for creating extensions, add the following to your build.gradle
:
- Groovy
- Kotlin
build.gradle
repositories {
maven {
name = 'Ayame Maven Repo'
url 'https://maven.ayamemc.org/'
}
}
build.gradle.kts
repositories {
maven {
name = "Ayame Maven Repo"
url = uri("https://maven.ayamemc.org/")
}
}