You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please update the build.gradle and settings.gradle files to enable automatic annotation processor configuration for Eclipse (or provide a documentation fragment):
settings.gradle snippet
pluginManagement {
plugins {
/* ... other plugins ... */
id "com.diffplug.eclipse.apt" version "3.29.1"
}
}
build.gradle snippets
plugins {
id "java"
id "eclipse-wtp"// Required for correct setup of APT in Eclipse
id "com.diffplug.eclipse.apt"// ... other plugins
}
// Required for correct setup of APT in Eclipse
eclipseJdt.dependsOn cleanEclipseJdt, eclipseJdtApt
eclipseJdtApt.dependsOn cleanEclipseJdtApt, eclipseFactorypath
eclipseFactorypath.dependsOn cleanEclipseFactorypath
(Share the Knowledge)
Please update the build.gradle and settings.gradle files to enable automatic annotation processor configuration for Eclipse (or provide a documentation fragment):
settings.gradle snippet
build.gradle snippets
The text was updated successfully, but these errors were encountered: