-
Notifications
You must be signed in to change notification settings - Fork 7
Installation
echo edited this page May 2, 2025
·
27 revisions
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.brain4j-org.brain4j:brain4j-core: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.brain4j-org</groupId>
<artifactId>brain4j-core</artifactId>
<version>latest-version</version>
</dependency>
</dependencies>Replace latest-version with the most recent release (2.8.0 as of 01/05/25)
Check out Getting Started
This wiki is still under construction. If you feel that you can contribute, please do so! Thanks.