New And Noteworthy
Run tasks on synchronization
Since Gradle 5.4, projects can declare an arbitrary set of tasks in the eclipse.synchronizationTasks configuration. Once configured, Gradle will automatically execute those tasks every time the user synchronizes workspace with the build.
plugins { id 'eclipse' } task foo { doLast { println 'foo' } } eclipse { synchronizationTasks foo }
Run tasks on Eclipse build
Similarly to the feature above, tasks can be configured to execute every time the Eclipse auto-build is triggered:
plugins { id 'eclipse' } task foo { doLast { println 'foo' } } eclipse { autoBuildTasks foo }
Release Date:
Wednesday, May 1, 2019
This release is part of Eclipse IDE 2019-09, and Eclipse IDE 2019-06.
Review:
Release Type:
Minor release
IP Due Diligence Type: