Skip to content

Commit c2b2ae2

Browse files
committed
chore: update dependencies
1 parent 2a6aa15 commit c2b2ae2

4 files changed

Lines changed: 13 additions & 9 deletions

File tree

‎.github/scripts/release-operations.sh‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ export BUILD_VERSION=$(./gradlew :pi4j-plugin-grpc:properties -q | grep '^versio
44
export DIST_ZIP=$(find . -name "pi4j-plugin-grpc-server-${BUILD_VERSION}.zip")
55
export SHADOW_JAR=$(find . -name "pi4j-plugin-grpc-server-${BUILD_VERSION}-all.jar")
66

7+
strip_snapshot() {
8+
export BUILD_VERSION="${BUILD_VERSION%-SNAPSHOT}"
9+
}
10+
711
# `true` if BUILD_VERSION ends with `SNAPSHOT`
812
is_snapshot() {
913
[[ "${BUILD_VERSION}" == *SNAPSHOT ]]

‎examples/Pi4JBlinkExample.java‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
//REPOS central,snapshots=https://central.sonatype.com/repository/maven-snapshots/
44
//DEPS org.slf4j:slf4j-simple:2.0.17
55
//DEPS io.github.iamnicknack:pi4j-plugin-grpc:0.0.1-SNAPSHOT
6+
//DEPS com.pi4j:pi4j-plugin-mock:4.0.1
67
//JAVA_OPTIONS -Dpi4j.grpc.host=localhost -Dpi4j.grpc.port=9090
78

89
import com.pi4j.Pi4J;

‎gradle/libs.versions.toml‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ assertj = "3.27.7"
44
assertk = "0.28.1"
55
jakarta-annotation = "3.0.0"
66
junit = "6.0.3"
7-
kotlin = "2.3.10"
8-
kotlin-coroutines = "1.10.2"
7+
kotlin = "2.3.21"
8+
kotlin-coroutines = "1.11.0"
99
logback = "1.5.32"
10-
slf4j = "2.0.17"
10+
slf4j = "2.0.18"
1111

12-
grpc-core = "1.79.0"
12+
grpc-core = "1.81.0"
1313
grpc-kotlin = "1.5.0"
14-
protobuf = "4.34.0"
15-
protobuf-google = "0.9.6"
14+
protobuf = "4.35.0"
15+
protobuf-google = "0.10.0"
1616

1717
publish-vanniktech = "0.36.0"
1818
shadow = "9.3.1"
1919

20-
pi4j = "4.0.0"
20+
pi4j = "4.0.1"
2121

2222
[libraries]
2323

‎gradle/wrapper/gradle-wrapper.properties‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
# Gradle 9.4 for kotlin java 25 support
4-
distributionUrl=https://services.gradle.org/distributions/gradle-9.4.0-bin.zip
3+
distributionUrl=https://services.gradle.org/distributions/gradle-9.5.1-bin.zip
54
networkTimeout=10000
65
validateDistributionUrl=true
76
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)