Skip to content

Commit 388cc58

Browse files
committed
chore: add jmx config to default jvm args
1 parent 74cc385 commit 388cc58

File tree

10 files changed

+15
-8
lines changed

10 files changed

+15
-8
lines changed

β€ŽREADME.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ graph LR
139139
bom
140140
catalog
141141
end
142-
subgraph devtools
142+
subgraph meta
143143
compiler
144144
ksp
145145
end

β€Žgradle/build-logic/common-plugins/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ tasks {
2929
kotlin {
3030
sourceSets.all {
3131
languageSettings.apply {
32-
progressiveMode = true
3332
optIn("kotlin.ExperimentalStdlibApi")
3433
optIn("kotlin.io.path.ExperimentalPathApi")
3534
optIn("kotlin.io.encoding.ExperimentalEncodingApi")

β€Žgradle/build-logic/common-plugins/src/main/kotlin/common/ProjectExtns.kt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,14 @@ fun Project.jvmArguments(forAppRun: Boolean = false) = buildList {
176176
"-Djava.security.egd=file:/dev/./urandom",
177177
"-Djdk.includeInExceptions=hostInfo,jar",
178178
"-Dkotlinx.coroutines.debug",
179+
"-Dcom.sun.management.jmxremote",
180+
"-Dcom.sun.management.jmxremote.local.only=false",
181+
"-Dcom.sun.management.jmxremote.port=9898",
182+
"-Dcom.sun.management.jmxremote.host=0.0.0.0",
183+
"-Dcom.sun.management.jmxremote.rmi.port=9898",
184+
"-Dcom.sun.management.jmxremote.authenticate=false",
185+
"-Dcom.sun.management.jmxremote.ssl=false",
186+
"-Djava.rmi.server.hostname=0.0.0.0",
179187
// "-ea",
180188
// "-XshowSettings:vm",
181189
// "-XshowSettings:system",

β€Žgradle/build-logic/common-plugins/src/main/kotlin/plugins/kotlin.mpp.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,8 @@ kotlinMultiplatform.apply {
181181
dependencies {
182182
implementation(kotlinw("browser"))
183183
// implementation(kotlinw("web"))
184-
// kspDependency("CommonMainMetadata", project(":devtools:ksp:processor"))
185-
// kspDependency("Js", project(":devtools:ksp:processor"))
184+
// kspDependency("CommonMainMetadata", project(":meta:ksp:processor"))
185+
// kspDependency("Js", project(":meta:ksp:processor"))
186186
}
187187

188188
// kotlin.srcDir("src/main/kotlin")

β€Žgradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ kotlin-wrappers = "1.0.0-pre.620"
3737
zip-prefixer = "0.3.1"
3838
ajalt-mordant = "2.1.0"
3939
ajalt-clikt = "4.1.0"
40-
ajalt-colormath = "3.3.1"
40+
ajalt-colormath = "3.3.2"
4141
compose-routing = "0.2.12"
4242
classgraph = "4.8.161"
4343
cache4k = "0.11.0"
@@ -119,7 +119,7 @@ semver-plugin = "0.5.0-rc.5"
119119
taskinfo = "2.1.0"
120120
dependency-analysis = "1.21.0"
121121
best-practices-plugin = "0.10"
122-
graalvm-nativeimage = "0.9.24"
122+
graalvm-nativeimage = "0.9.25"
123123
github-depgraph = "0.1.0"
124124
github-changelog = "2.0.0"
125125
wire-plugin = "4.8.0"
File renamed without changes.

β€Žsettings.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ include(":dep-mgmt:bom")
2828

2929
include(":dep-mgmt:catalog")
3030

31-
include(":devtools:ksp:processor")
31+
include(":meta:ksp:processor")
3232

33-
include(":devtools:compiler:plugin")
33+
include(":meta:compiler:plugin")

0 commit comments

Comments
Β (0)