Details
-
Type: Task
-
Status: Reopened
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: 2.11.0, 2.11.1.0, 2.11.1.1
-
Component/s: Dev and Dep
-
Labels:None
Description
To fully replace ant within Eclipse IDE, Eclipse requires a plugin called "buildship" which integrates gradle.
Also, the gradle build also needs to utilise an eclipse plugin to effectively complete the integration.
In build.gradle, add
plugins {
id 'eclipse'
}
eclipse {
// some optional configuration
}
and for each defined task add a group and description
task myTask {
group="build"
description="complete build of application"
}
and finally run
gradle eclipse
to generate the .project and .classpath files.
Also, the gradle build also needs to utilise an eclipse plugin to effectively complete the integration.
In build.gradle, add
plugins {
id 'eclipse'
}
eclipse {
// some optional configuration
}
and for each defined task add a group and description
task myTask {
group="build"
description="complete build of application"
}
and finally run
gradle eclipse
to generate the .project and .classpath files.