Search Gradle plugins

com.diffplug.eclipse.buildproperties

Uses Eclipse''s build.properties to control a gradle build, and fixes the eclipse project classpath to include binary assets specified in build.properties.

https://github.com/diffplug/goomph

Sources: https://github.com/diffplug/goomph.git

Version 3.26.0

3.26.0

Created 22 December 2020.

Uses Eclipse''s build.properties to control a gradle build, and fixes the eclipse project classpath to include binary assets specified in build.properties.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.diffplug.eclipse.buildproperties") version "3.26.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.diffplug.gradle:goomph:3.26.0")
      }
    }
    
    apply(plugin = "com.diffplug.eclipse.buildproperties")
  • Applying plugins to all subprojects .