Skip to content

dependency: Update patch #925

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v4.2.2
- name: 'Set up JDK ${{ matrix.java }}'
uses: actions/setup-java@v4.7.0
uses: actions/setup-java@v4.7.1
with:
distribution: adopt
java-version: '${{ matrix.java }}'
- name: Cache Gradle
uses: actions/cache@v4.2.2
uses: actions/cache@v4.2.3
with:
path: ~/.gradle/caches
key: >-
Expand All @@ -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.6.1
uses: actions/upload-artifact@v4.6.2
with:
name: 'EternalCore'
path: eternalcore-plugin/build/libs/EternalCore*.jar
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repositories {
dependencies {
implementation("net.kyori:blossom:1.3.1")
implementation("com.gradleup.shadow:shadow-gradle-plugin:8.3.6")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.10")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.21")
implementation("net.minecrell:plugin-yml:0.6.0")
}

Expand Down
16 changes: 8 additions & 8 deletions buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ object Versions {

const val JETBRAINS_ANNOTATIONS = "26.0.2"
const val PLACEHOLDER_API = "2.11.6"
const val LOMBOK = "1.18.36"
const val LOMBOK = "1.18.38"
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.19.0"
const val ADVENTURE_PLATFORM_FACET = "4.3.4"
const val CDN_CONFIGS = "1.14.6"
const val CDN_CONFIGS = "1.14.8"

const val MARIA_DB = "3.5.2"
const val MARIA_DB = "3.5.3"
const val POSTGRESQL = "42.7.5"
const val H2 = "2.3.232"
const val ORMLITE = "6.1"
Expand All @@ -26,14 +26,14 @@ object Versions {
const val LITE_COMMANDS = "3.9.7"
const val LITE_SKULL_API = "1.3.0"

const val GUAVA = "33.4.0-jre"
const val GUAVA = "33.4.8-jre"
const val GSON = "2.12.1"

const val EXPRESSIBLE = "1.3.6"
const val PANDA_UTILITIES = "0.5.3-alpha"
const val APACHE_COMMONS = "2.18.0"

const val TRIUMPH_GUI = "3.1.11"
const val TRIUMPH_GUI = "3.1.12"

const val BSTATS = "3.1.0"

Expand All @@ -44,9 +44,9 @@ object Versions {
// tests
const val EXPRESSIBLE_JUNIT = "1.3.6"
const val GROOVY_ALL = "3.0.24"
const val JUNIT_JUPITER_API = "5.12.0"
const val JUNIT_JUPITER_PARAMS = "5.12.0"
const val JUNIT_JUPITER_ENGINE = "5.12.0"
const val JUNIT_JUPITER_API = "5.12.2"
const val JUNIT_JUPITER_PARAMS = "5.12.2"
const val JUNIT_JUPITER_ENGINE = "5.12.2"
const val MOCKITO_CORE = "5.16.0"

}
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 @@ -21,7 +21,7 @@ configurations.named("checkstyle") {
resolutionStrategy {
capabilitiesResolution {
withCapability("com.google.collections:google-collections") {
select("com.google.guava:guava:33.4.0-jre")
select("com.google.guava:guava:33.4.8-jre")
}
}
}
Expand Down