com.diffplug.eclipse.projectdeps
Owner: Ned Twigg
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 4.1.0 (latest)
4.1.0
Created 20 September 2024.
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 "4.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.diffplug.gradle:goomph:4.1.0")
}
}
apply(plugin = "com.diffplug.eclipse.projectdeps")
Using the plugins DSL:
plugins {
id "com.diffplug.eclipse.projectdeps" version "4.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.diffplug.gradle:goomph:4.1.0"
}
}
apply plugin: "com.diffplug.eclipse.projectdeps"