Hi guys, I’m trying to build a mpp project with sp...
# multiplatform
g
Hi guys, I’m trying to build a mpp project with spring boot. It looks like my
bootRun
tasks was omitted when I switched from the
id("kotlin-platform-jvm")
plugin to
kotlin("multiplatform")
. So, how can we call the
./gradlew bootRun
again when using the
kotlin("multiplatform")
plugin? I’m using the following:
Copy code
plugins {
	kotlin("multiplatform")
	id("kotlin-spring")
//	id("kotlin-platform-jvm")
	id("org.springframework.boot")
	id("io.spring.dependency-management")
}