Package com.diffplug.gradle.eclipse
Class ProjectDepsPlugin
java.lang.Object
com.diffplug.gradle.ProjectPlugin
com.diffplug.gradle.eclipse.ProjectDepsPlugin
Fixes an intermittent problem when generating eclipse
project files where dependencies on other projects within
the workspace aren't always resolved correctly within Eclipse.
```groovy
apply plugin: 'com.diffplug.eclipse.projectdeps'
```
Can also be configured to replace binary dependencies with
eclipse project dependencies:
```groovy
eclipseProjectDeps {
replaceWithProject('some-external-lib')
replaceWithProject(['libA', 'libB', 'libC'])
}
```
-
Nested Class Summary
Nested Classes -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class com.diffplug.gradle.ProjectPlugin
apply, getPlugin, treeDef
-
Constructor Details
-
ProjectDepsPlugin
public ProjectDepsPlugin()
-
-
Method Details
-
applyOnce
Description copied from class:ProjectPluginPlugin application, which is guaranteed to execute only once.- Specified by:
applyOncein classProjectPlugin
-