-
Notifications
You must be signed in to change notification settings - Fork 7
Installation
xEcho1337 edited this page Feb 9, 2025
·
27 revisions
This guide will walk you through installing Brain4J in your Java project.
Before installing Brain4J, make sure you have:
- Java 21+ installed on your system.
- Gradle or Maven for dependency management.
Add the following to your build.gradle file:
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.xEcho1337:brain4j:latest-version'
}Add this to your pom.xml:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.xEcho1337</groupId>
<artifactId>brain4j</artifactId>
<version>latest-version</version>
</dependency>
</dependencies>Replace latest-version with the most recent release (2.5.3-pre3 as of 09/02/25)
- Learn the Basics: Follow the Getting Started Guide.
- Explore Features: Check out Advanced Usage.
This wiki is still under construction. If you feel that you can contribute, please do so! Thanks.