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 3.41.0
3.41.0
Created 28 February 2023.
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.41.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.diffplug.gradle:goomph:3.41.0")
}
}
apply(plugin = "com.diffplug.eclipse.projectdeps")
Using the plugins DSL:
plugins {
id "com.diffplug.eclipse.projectdeps" version "3.41.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.diffplug.gradle:goomph:3.41.0"
}
}
apply plugin: "com.diffplug.eclipse.projectdeps"