Skip to main content
  • Log in
  • Manage Cookies
projects.eclipse.org
Download
  • Projects
  • Working Groups
  • Members
  • Community
    • Marketplace
    • Events
    • Planet Eclipse
    • Newsletter
    • Videos
    • Blogs
  • Participate
    • Report a Bug
    • Forums
    • Mailing Lists
    • Wiki
    • IRC
    • Research
  • Eclipse IDE
    • Download
    • Learn More
    • Documentation
    • Getting Started / Support
    • How to Contribute
    • IDE and Tools
    • Newcomer Forum
  • More
      • Community

      • Marketplace
      • Events
      • Planet Eclipse
      • Newsletter
      • Videos
      • Blogs
      • Participate

      • Report a Bug
      • Forums
      • Mailing Lists
      • Wiki
      • IRC
      • Research
      • Eclipse IDE

      • Download
      • Learn More
      • Documentation
      • Getting Started / Support
      • How to Contribute
      • IDE and Tools
      • Newcomer Forum
    • Search

  1. Home
  2. Projects
  3. Eclipse Tools Project
  4. Eclipse Buildship: Eclipse...
  5. 3.1.0

Eclipse Buildship: Eclipse Plug-ins for Gradle 3.1.0

Primary tabs

  • Overview(active tab)
  • Release Plan
  • Review Information

Announcement: https://discuss.gradle.org/t/buildship-3-1-is-now-available

Update site: https://download.eclipse.org/buildship/updates/e411/releases/3.x/3.1.0.v20190501-0832

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: 
3.1.0 Release Review
Release Type: 
Minor release

Project Links

  • Summarize Bugs
  • Dev docs
  • View Help wanted Bugs
  • Build docs
  • Getting Started
  • Stories
  • View Open Bugs
  • Report a Bug
  • Website
Eclipse Buildship: Eclipse Plug-ins for Gradle

Related Projects

Project Hierarchy:

  • Eclipse Tools Project
  • Eclipse Buildship: Eclipse Plug-ins for Gradle

Tags

Build Technologies
  • Gradle
Other Tags
  • gradle
  • build
  • buildship

Eclipse Foundation

  • About Us
  • Contact Us
  • Sponsor
  • Members
  • Governance
  • Code of Conduct
  • Logo and Artwork
  • Board of Directors
  • Careers

Legal

  • Privacy Policy
  • Terms of Use
  • Copyright Agent
  • Eclipse Public License
  • Legal Resources

Useful Links

  • Report a Bug
  • Documentation
  • How to Contribute
  • Mailing Lists
  • Forums
  • Marketplace

Other

  • IDE and Tools
  • Projects
  • Working Groups
  • Research@Eclipse
  • Report a Vulnerability
  • Service Status

Copyright © Eclipse Foundation. All Rights Reserved.

Back to the top