Is it possible to run gradle build for a single, s...
# multiplatform
r
Is it possible to run gradle build for a single, selected platform (without commenting multiplatform buildfile)? Any command line option?
d
Yes, you'll have to find the specific task.
I tend to use
gradle jvmTest
.
r
The task I want to run is
publishToMavenLocal
...
ok found it -
publishJsPublicationToMavenLocal
thx
d
No problem. 🙂