HI there, is it possible to specify jvmTarget from...
# gradle
a
HI there, is it possible to specify jvmTarget from command line during a gradle build?
d
Yes, you can set a gradle property like
gradlew -PjvmVersion=1.8 jar
, and then read to property from the task.
1