Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 16 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,22 @@
[![Chat on Discord](https://raw.githubusercontent.com/vLuckyyy/badges/main//chat-with-us-on-discord.svg)](https://discord.com/invite/FQ7jmGBd6c)
[![Read the Docs](https://raw.githubusercontent.com/vLuckyyy/badges/main/read-the-documentation.svg)](https://docs.eternalcode.pl/eternalcore/introduction)
[![Available on BStats](https://raw.githubusercontent.com/vLuckyyy/badges/main/available-on-bstats.svg)](https://bstats.org/plugin/bukkit/EternalCore/13964)
</div>

> [!WARNING]
> **This branch is currently under active development for EternalCore 2.0.**
>
> This is a major update that includes breaking changes, configuration refactors, translation cleanup, and UX improvements.
>
> ⚠️ Features may be incomplete or unstable. Avoid using in production unless you're contributing or testing the new version.
>
> 🔗 See the full roadmap and discussion: https://github.com/EternalCodeTeam/EternalCore/issues/952
[Report Bug](https://github.com/EternalCodeTeam/EternalCore/issues) • [Request Feature](https://github.com/EternalCodeTeam/EternalCore/issues) • [Join Discord](https://discord.com/invite/FQ7jmGBd6c)

<br>

<a href="https://ko-fi.com/eternalcodeteam">
<img src="https://github.com/intergrav/devins-badges/blob/v3/assets/cozy/donate/kofi-plural-alt_64h.png?raw=true" height="64" alt="Support us on Ko-fi">
</a>

</div>

> [!IMPORTANT]
> 🚀 **EternalCore 2.0 has landed!**
> This is a major release with internal changes, new systems, and config updates.
> Please read the **changelog** carefully before upgrading:
> 👉 https://github.com/EternalCodeTeam/EternalCore/releases/latest


# Welcome to EternalCore! 🚀
Expand Down Expand Up @@ -93,15 +98,15 @@ For Maven projects use:

For Gradle projects use:
```kts
compileOnly("com.eternalcode:eternalcore-api:2.0.0-SNAPSHOT")
compileOnly("com.eternalcode:eternalcore-api:2.0.0")
```

For Maven projects use:
```xml
<dependency>
<groupId>com.eternalcode</groupId>
<artifactId>eternalcore-api</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
<scope>provided</scope>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/eternalcode-java.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group = "com.eternalcode"
version = "2.0.0-SNAPSHOT"
version = "2.0.0"

java {
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/eternalcore-publish.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "com.eternalcode"
version = "2.0.0-SNAPSHOT"
version = "2.0.0"

java {
withSourcesJar()
Expand Down
Loading