Hello, I begin a Micronaut project, and as first s...
# gradle
b
Hello, I begin a Micronaut project, and as first step, I would like to move to kotlin DSL. There is one thing I can not migrate:
run.jvmArgs("-noverify", "-XX:TieredStopAtLevel=1")
c
Copy code
tasks.named<JavaExec>("run") {
	jvmArgs("-noverify", "-XX:TieredStopAtLevel=1")
}
Also I highly recommend this guide, if it misses something, at least it gives one an idea on where to look: https://guides.gradle.org/migrating-build-logic-from-groovy-to-kotlin/
b
yes, I read it, a bit too fast apparently. thank you! 👍
👌 1