Developer Framework
Streamline was developed with developers in mind, featuring a robust Framework that is professionally managed.
Import StreamlineCore
Maven
Repository
XML
<repositories>
<repository>
<id>jitpack</id>
<url>https://jitpack.io/</url>
</repository>
</repositories>
Dependencies
XML
<dependencies>
<!--Main API-->
<dependency>
<groupId>com.github.Streamline-Essentials.StreamlineCore</groupId>
<artifactId>API</artifactId>
<version>master-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!--Backend API (Bukkit, Fabric, Forge)-->
<dependency>
<groupId>com.github.Streamline-Essentials.StreamlineCore</groupId>
<artifactId>BAPI</artifactId>
<version>master-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
Gradle
Groovy
repositories {
maven { uri("https://jitpack.io") }
}
Dependencies
Groovy
dependencies {
compileOnly("com.github.Streamline-Essentials.StreamlineCore:API:master-SNAPSHOT") // Main API
compileOnly("com.github.Streamline-Essentials.StreamlineCore:BAPI:master-SNAPSHOT") // Backend API
}