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/[email protected]
- name: 'Set up JDK ${{ matrix.java }}'
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
distribution: adopt
java-version: '${{ matrix.java }}'
- name: Cache Gradle
uses: actions/[email protected].2
uses: actions/[email protected].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/[email protected].1
uses: actions/[email protected].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,42 +8,42 @@ 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 POSTGRESQL = "42.7.5"
const val MARIA_DB = "3.5.3"
const val POSTGRESQL = "42.7.7"
const val H2 = "2.3.232"
const val ORMLITE = "6.1"
const val HIKARI_CP = "6.2.1"

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"

const val CAFFEINE = "3.2.0"
const val CAFFEINE = "3.2.1"

const val SPOTIFY_COMPLETABLE_FUTURES = "0.3.6"

// tests
const val EXPRESSIBLE_JUNIT = "1.3.6"
const val GROOVY_ALL = "3.0.24"
const val GROOVY_ALL = "3.0.25"
const val JUNIT_JUPITER_API = "5.12.0"
const val JUNIT_JUPITER_PARAMS = "5.12.0"
const val JUNIT_JUPITER_ENGINE = "5.12.0"
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 @@ -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