JaroslavTulach opened a new pull request #3084: URL: https://github.com/apache/netbeans/pull/3084
The New Java Project wizard uses an unusual Gradle template with an older deprecated plugins syntax and jacoco included for some reason. To make this feature maintainable we should instead use the existing `gradle init` functionality: ``` gradle init --type java-application --test-framework junit-jupiter --dsl groovy --package com.example --project-name example ``` My take on that. Let's extend the API of `TemplateOperation` to be able to invoke `gradle init`. Then use it in Java application and Java library project. When at it also change the default to create Gradle wrapper when no option is specified. TBD: Document and version API changes TBD: Disable many fields in the wizard panel? How do you feel about this @lkishalmi? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
