Skip to content

Commit

Permalink
dependency: Update minor
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jan 9, 2025
1 parent eb68fdf commit 93c2e56
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 17 deletions.
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/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: >-
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.4.3
uses: actions/upload-artifact@v4.5.0
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.3")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.0.21")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0")
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 @@ -4,7 +4,7 @@ object Versions {
const val PAPER_API = "1.19.4-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"
Expand All @@ -17,21 +17,21 @@ object Versions {
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"

Expand All @@ -48,6 +48,6 @@ object Versions {
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 MOCKITO_CORE = "5.15.2"

}
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/eternalcode-java.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ group = "com.eternalcode"
version = "1.4.0"

checkstyle {
toolVersion = "10.18.2"
toolVersion = "10.21.1"

configFile = file("${rootDir}/config/checkstyle/checkstyle.xml")
configProperties["checkstyle.suppressions.file"] = "${rootDir}/config/checkstyle/suppressions.xml"
Expand All @@ -21,7 +21,7 @@ configurations.named("checkstyle") {
resolutionStrategy {
capabilitiesResolution {
withCapability("com.google.collections:google-collections") {
select("com.google.guava:guava:33.3.1-jre")
select("com.google.guava:guava:33.4.0-jre")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 1 addition & 2 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ done
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down

0 comments on commit 93c2e56

Please sign in to comment.