Search Gradle plugins

com.diffplug.eclipse.projectdeps

Fixes an intermittent problem where dependencies on other projects within the workspace aren''t always resolved correctly within Eclipse.

https://github.com/diffplug/goomph

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

Version 3.33.0

Created 18 September 2021.

Fixes an intermittent problem where dependencies on other projects within the workspace aren''t always resolved correctly within Eclipse.

Using the plugins DSL:

plugins {
  id("com.diffplug.eclipse.projectdeps") version "3.33.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.diffplug.gradle:goomph:3.33.0")
  }
}

apply(plugin = "com.diffplug.eclipse.projectdeps")

Using the plugins DSL:

plugins {
  id "com.diffplug.eclipse.projectdeps" version "3.33.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.diffplug.gradle:goomph:3.33.0"
  }
}

apply plugin: "com.diffplug.eclipse.projectdeps"

Learn how to apply plugins to subprojects