Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies (#102)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Sep 6, 2023
1 parent 95626b8 commit 8bce1b0
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 17 deletions.
4 changes: 2 additions & 2 deletions api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
dependencies {
api(platform(kotlin("bom")))
api(kotlin("stdlib"))
api("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.7.2")
api("org.jetbrains.kotlinx", "kotlinx-serialization-core", "1.5.1")
api("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.7.3")
api("org.jetbrains.kotlinx", "kotlinx-serialization-core", "1.6.0")
}

java {
Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ import org.jetbrains.kotlin.gradle.dsl.KotlinJvmProjectExtension
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version "1.8.22" apply false
kotlin("kapt") version "1.8.22" apply false
kotlin("plugin.serialization") version "1.8.22" apply false
kotlin("jvm") version "1.9.10" apply false
kotlin("kapt") version "1.9.10" apply false
kotlin("plugin.serialization") version "1.9.10" apply false
id("com.github.johnrengelman.shadow") version "8.1.1" apply false
id("net.kyori.blossom") version "1.3.1" apply false
}
Expand Down
2 changes: 1 addition & 1 deletion common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ apply(plugin = "kotlinx-serialization")

dependencies {
api(project(":unifiedmetrics-api"))
implementation("com.charleskorn.kaml:kaml:0.54.0")
implementation("com.charleskorn.kaml:kaml:0.55.0")
}
2 changes: 1 addition & 1 deletion drivers/influx/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ apply(plugin = "kotlinx-serialization")

dependencies {
compileOnly(project(":unifiedmetrics-api"))
api("com.influxdb:influxdb-client-java:6.9.0")
api("com.influxdb:influxdb-client-java:6.10.0")
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
15 changes: 10 additions & 5 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,8 @@ done
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit

# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down Expand Up @@ -133,10 +131,13 @@ location of your Java installation."
fi
else
JAVACMD=java
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
if ! command -v java >/dev/null 2>&1
then
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
fi

# Increase the maximum file descriptors if we can.
Expand Down Expand Up @@ -197,6 +198,10 @@ if "$cygwin" || "$msys" ; then
done
fi


# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'

# Collect all arguments for the java command;
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
# shell script including quotes and variable substitutions, so put them in
Expand Down
2 changes: 1 addition & 1 deletion platforms/bungee/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ repositories {
dependencies {
api(project(":unifiedmetrics-core"))

compileOnly("net.md-5", "bungeecord-api", "1.17-R0.1-SNAPSHOT")
compileOnly("net.md-5", "bungeecord-api", "1.20-R0.1")
}

tasks {
Expand Down
6 changes: 3 additions & 3 deletions platforms/fabric/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/

plugins {
id("fabric-loom") version "1.3.2"
id("fabric-loom") version "1.3.9"
id("net.kyori.blossom")
}

Expand All @@ -30,10 +30,10 @@ dependencies {
// https://fabricmc.net/versions.html
minecraft("com.mojang:minecraft:1.17.1")
mappings("net.fabricmc:yarn:1.17.1+build.65:v2")
modImplementation("net.fabricmc:fabric-loader:0.14.21")
modImplementation("net.fabricmc:fabric-loader:0.14.22")

modImplementation("net.fabricmc.fabric-api:fabric-api:0.46.1+1.17")
modImplementation("net.fabricmc:fabric-language-kotlin:1.9.6+kotlin.1.8.22")
modImplementation("net.fabricmc:fabric-language-kotlin:1.10.10+kotlin.1.9.10")

api(project(":unifiedmetrics-core"))

Expand Down

0 comments on commit 8bce1b0

Please sign in to comment.