Skip to content

Commit 0eda954

Browse files
committed
chore: dep updates
1 parent 9d6ab79 commit 0eda954

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ For testing, a separate [sandbox project](/sandbox) is available with the plugin
7777

7878
# Build the sandbox app using published plugin
7979
$ ./gradlew -p sandbox :build -PjvmArgs=
80-
81-
# Run the sandbox app
8280
$ sandbox/build/libs/sandbox-app
8381

8482
# Run other plugin tasks
8583
$ ./gradlew -p sandbox :dependencyUpdates --no-configuration-cache
84+
# To see the plugin classpath
85+
$ ./gradlew -p sandbox :buildEnvironment | grep -i "dev.suresh"
8686
```
8787

8888
## Publishing

gradle/libs.versions.toml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ kotlinx-benchmark = "0.4.13"
3939
kotlinx-fuzz = "0.2.2"
4040
kotlinx-metadata = "0.9.0"
4141
kotlinx-reflect-lite = "1.1.0"
42-
kotlin-wrappers = "2025.3.9"
42+
kotlin-wrappers = "2025.3.10"
4343
kotlin-redacted = "1.12.1"
4444
kotlin-serviceloader = "0.0.15"
4545
kotlinx-multik = "0.2.3"
@@ -82,6 +82,7 @@ jimfs = "1.3.0"
8282
sshj = "0.39.0"
8383
jsch = "0.2.24"
8484
pty4j = "0.13.2"
85+
oshi = "6.7.1"
8586
junit = "5.12.0"
8687
koin = "4.1.0-Beta5"
8788
koin-annotations = "2.0.0"
@@ -101,7 +102,7 @@ ktfmt = "0.54"
101102
google-javaformat = "1.25.2"
102103
palantir-javaformat = "2.58.0"
103104
google-auto-service = "1.1.1"
104-
google-tink = "1.16.0"
105+
google-tink = "1.17.0"
105106
graalvm = "24.1.2"
106107
jspecify = "1.0.0"
107108
rsocket = "0.20.0"
@@ -167,19 +168,20 @@ xchart = "3.8.8"
167168
batik = "1.18"
168169
twelvemonkeys = "3.12.0"
169170
okapibarcode = "0.5.0"
170-
chasm = "0.9.6"
171+
chasm = "0.9.61"
171172
cel = "0.9.1"
172173
kfswatch = "1.3.0"
173174
kmp-process = "0.2.0"
174175
kmbed = "1.8.4"
175-
langchain4j = "1.0.0-beta1"
176+
langchain4j = "1.0.0-beta2"
176177
jlama = "0.8.4"
177178
mcp-kotlin = "0.3.0"
178179
mcp4k = "0.3.4"
179180
dflib = "2.0.0-M2"
180181
ldaptive = "2.4.0"
181182
chicory = "1.1.1"
182-
weh-bindings = "0.3"
183+
weh-bindings = "0.4"
184+
wasm2class = "0.2"
183185
log4k = "0.30.0"
184186
rwmutex = "1.0.0"
185187
bluesky-ozone = "0.3.2"
@@ -225,7 +227,7 @@ sigstore = "1.1.0"
225227
reproducible-builds = "1.0"
226228
autonomousapps-depanalysis = "2.10.1"
227229
autonomousapps-bestpractices = "0.10"
228-
graalvm-nativeimage = "0.10.5"
230+
graalvm-nativeimage = "0.10.6"
229231
github-depgraph = "0.1.0"
230232
github-changelog = "2.2.0"
231233
wire-plugin = "5.3.0"
@@ -453,6 +455,7 @@ pty4j = { module = "org.jetbrains.pty4j:pty4j"
453455
sshj = { module = "com.hierynomus:sshj" , version.ref = "sshj"}
454456
jsch = { module = "com.github.mwiede:jsch" , version.ref = "jsch"}
455457
sslcontext-kickstart = { module = "io.github.hakky54:sslcontext-kickstart" , version.ref = "sslcontext-kickstart"}
458+
oshi-core = { module = "com.github.oshi:oshi-core-java11" , version.ref = "oshi"}
456459

457460
ktor-cohort-core = { module = "com.sksamuel.cohort:cohort-ktor" , version.ref = "ktor-cohort"}
458461
ktor-cohort-hikari = { module = "com.sksamuel.cohort:cohort-hikari" , version.ref = "ktor-cohort"}
@@ -779,6 +782,7 @@ badass-jlink = { id = "com.dua3.gradle.jlink"
779782
badass-runtime = { id = "com.dua3.gradle.runtime" , version.ref = "badass-runtime" }
780783
gradlex-maven-plugin = { id = "org.gradlex.maven-plugin-development" , version.ref = "gradlex-maven-plugin" }
781784
typesafe-conventions = { id = "dev.panuszewski.typesafe-conventions" , version.ref = "typesafe-conventions" }
785+
wasm2class = { id = "at.released.wasm2class.plugin" , version.ref = "wasm2class" }
782786

783787
# Common build and settings plugin
784788
project-root = { id = "dev.suresh.plugin.root" , version.ref = "bc-plugins" }

plugins/project/src/main/kotlin/common/ProjectExtns.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,9 +203,9 @@ fun Project.withJavaModule(moduleName: String, supportedInNative: Boolean = fals
203203
}
204204

205205
/**
206-
* Returns the Gradle plugin marker dependency notation in the format
207-
* 'pluginId:pluginId.gradle.plugin:version'. This format is used to declare plugin dependencies in
208-
* the buildscript classpath.
206+
* Returns the Gradle plugin marker dependency notation in the format '<plugin id>:<plugin
207+
* id>.gradle.plugin:<plugin version>'. This format is used to declare plugin dependencies in the
208+
* buildscript classpath.
209209
*/
210210
val Provider<PluginDependency>.pluginMarker
211211
get() = "${get().pluginId}:${get().pluginId}.gradle.plugin:${get().version}"

0 commit comments

Comments
 (0)