Skip to content

Instantly share code, notes, and snippets.

@yushijinhun
Last active December 19, 2019 04:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yushijinhun/3b24209abd2e3a3a35e1c5c1fb8ccb64 to your computer and use it in GitHub Desktop.
Save yushijinhun/3b24209abd2e3a3a35e1c5c1fb8ccb64 to your computer and use it in GitHub Desktop.
[gradle]enable java preview features
// - Adds '--enable-preview' parameter
application {
applicationDefaultJvmArgs << '--enable-preview'
}
compileJava {
options.compilerArgs << '--enable-preview'
}
test {
jvmArgs << '--enable-preview'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment