Skip to content

Latest commit

 

History

History
executable file
·
49 lines (41 loc) · 1.55 KB

README.md

File metadata and controls

executable file
·
49 lines (41 loc) · 1.55 KB

Etheria

Etheria CI Etheria Download Discord

Fork of Folia

How to download

Etheria use the same paperclip jar system that Paper uses.

You can download the latest build of Etheria by going here

You can also build it yourself.

How to link plugin api

gradle

repositories {
  maven("https://repo.bambooland.fun/maven-public/")
}

dependencies {
  compileOnly("org.subkek.etheria:etheria-api:1.21-R0.1-SNAPSHOT")
}

java {
  toolchain.languageVersion.set(JavaLanguageVersion.of(21))
}

maven

<repository>
  <id>subkek</id>
  <url>https://repo.bambooland.fun/maven-public/</url>
</repository>
<dependency>
  <groupId>org.subkek.etheria</groupId>
  <artifactId>etheria-api</artifactId>
  <version>1.21-R0.1-SNAPSHOT</version>
  <scope>provided</scope>
</dependency>

Building

You need JDK 21 and good Internet conditions.

Clone this repo, run ./gradlew applyPatches, then run ./gradlew createReobfPaperclipJar in your terminal.

You can find the jars in the ./build/libs/ directory.