-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into add-possibility-to-set-warp-permissions
- Loading branch information
Showing
81 changed files
with
641 additions
and
302 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,14 +16,14 @@ jobs: | |
fail-fast: false | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
- name: 'Set up JDK ${{ matrix.java }}' | ||
uses: actions/setup-java@v4.4.0 | ||
uses: actions/setup-java@v4.6.0 | ||
with: | ||
distribution: adopt | ||
java-version: '${{ matrix.java }}' | ||
- name: Cache Gradle | ||
uses: actions/cache@v4.1.1 | ||
uses: actions/cache@v4.2.0 | ||
with: | ||
path: ~/.gradle/caches | ||
key: >- | ||
|
@@ -35,7 +35,7 @@ jobs: | |
- name: Build the Jar | ||
run: './gradlew clean eternalcore-plugin:shadowJar' | ||
- name: Upload a Build Artifact | ||
uses: actions/upload-artifact@v4.4.3 | ||
uses: actions/upload-artifact@v4.6.0 | ||
with: | ||
name: 'EternalCore' | ||
path: eternalcore-plugin/build/libs/EternalCore*.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,52 @@ | ||
object Versions { | ||
|
||
const val SPIGOT_API = "1.19.4-R0.1-SNAPSHOT" | ||
const val PAPER_API = "1.19.4-R0.1-SNAPSHOT" | ||
const val SPIGOT_API = "1.21.3-R0.1-SNAPSHOT" | ||
const val PAPER_API = "1.21.3-R0.1-SNAPSHOT" | ||
|
||
const val ETERNALCODE_COMMONS = "1.1.5" | ||
const val MULTIFICATION = "1.1.4" | ||
const val MULTIFICATION = "1.2.1" | ||
|
||
const val JETBRAINS_ANNOTATIONS = "26.0.1" | ||
const val PLACEHOLDER_API = "2.11.6" | ||
const val LOMBOK = "1.18.34" | ||
const val LOMBOK = "1.18.36" | ||
const val GIT_CHECK = "1.0.0" | ||
|
||
const val PAPERLIB = "1.0.8" | ||
const val ADVENTURE_PLATFORM = "4.3.4" | ||
const val ADVENTURE_TEXT_MINIMESSAGE = "4.18.0-SNAPSHOT" | ||
const val ADVENTURE_TEXT_MINIMESSAGE = "4.18.0" | ||
const val ADVENTURE_PLATFORM_FACET = "4.3.4" | ||
const val CDN_CONFIGS = "1.14.5" | ||
|
||
const val MARIA_DB = "3.4.1" | ||
const val MARIA_DB = "3.5.1" | ||
const val POSTGRESQL = "42.7.4" | ||
const val H2 = "2.1.214" | ||
const val H2 = "2.3.232" | ||
const val ORMLITE = "6.1" | ||
const val HIKARI_CP = "6.0.0" | ||
const val HIKARI_CP = "6.2.1" | ||
|
||
const val LITE_COMMANDS = "3.8.0" | ||
const val LITE_COMMANDS = "3.9.7" | ||
const val LITE_SKULL_API = "1.3.0" | ||
|
||
const val GUAVA = "33.3.1-jre" | ||
const val GUAVA = "33.4.0-jre" | ||
const val GSON = "2.11.0" | ||
|
||
const val EXPRESSIBLE = "1.3.6" | ||
const val PANDA_UTILITIES = "0.5.3-alpha" | ||
const val APACHE_COMMONS = "2.17.0" | ||
const val APACHE_COMMONS = "2.18.0" | ||
|
||
const val TRIUMPH_GUI = "3.1.10" | ||
const val TRIUMPH_GUI = "3.1.11" | ||
|
||
const val BSTATS = "3.1.0" | ||
const val PIXEL_WIDTH = "1.1.0" | ||
|
||
const val CAFFEINE = "3.1.8" | ||
|
||
const val SPOTIFY_COMPLETABLE_FUTURES = "0.3.6" | ||
|
||
// tests | ||
const val EXPRESSIBLE_JUNIT = "1.3.6" | ||
const val GROOVY_ALL = "3.0.22" | ||
const val JUNIT_JUPITER_API = "5.11.2" | ||
const val JUNIT_JUPITER_PARAMS = "5.11.2" | ||
const val JUNIT_JUPITER_ENGINE = "5.11.2" | ||
const val MOCKITO_CORE = "5.14.2" | ||
const val GROOVY_ALL = "3.0.23" | ||
const val JUNIT_JUPITER_API = "5.11.4" | ||
const val JUNIT_JUPITER_PARAMS = "5.11.4" | ||
const val JUNIT_JUPITER_ENGINE = "5.11.4" | ||
const val MOCKITO_CORE = "5.15.2" | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ plugins { | |
} | ||
|
||
group = "com.eternalcode" | ||
version = "1.4.0" | ||
version = "1.5.0" | ||
|
||
java { | ||
withSourcesJar() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 0 additions & 10 deletions
10
eternalcore-api/src/main/java/com/eternalcode/core/delay/DelaySettings.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
eternalcore-core/src/main/java/com/eternalcode/core/bridge/BridgeManagerInitializer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.